Skip to content

Commit 31fa92b

Browse files
authored
Merge pull request #69 from Atypical-Consulting/features/test-events
test: add tests for checking if an event is raised
2 parents c98af51 + 97d1c96 commit 31fa92b

18 files changed

+181
-52
lines changed

docs/api/VFSDirectoryRenamedArgs.NewPath.md renamed to docs/api/VFSDirectoryRenamedArgs.DestinationPath.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md 'VirtualFileSystem')
22
### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md#Atypical.VirtualFileSystem.Core 'Atypical.VirtualFileSystem.Core').[VFSDirectoryRenamedArgs](VFSDirectoryRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs')
33

4-
## VFSDirectoryRenamedArgs.NewPath Property
4+
## VFSDirectoryRenamedArgs.DestinationPath Property
55

66
Gets the new path of the renamed directory.
77

88
```csharp
9-
public Atypical.VirtualFileSystem.Core.VFSDirectoryPath NewPath { get; }
9+
public Atypical.VirtualFileSystem.Core.VFSDirectoryPath DestinationPath { get; }
1010
```
1111

1212
#### Property Value

docs/api/VFSDirectoryRenamedArgs.OldPath.md renamed to docs/api/VFSDirectoryRenamedArgs.SourcePath.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md 'VirtualFileSystem')
22
### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md#Atypical.VirtualFileSystem.Core 'Atypical.VirtualFileSystem.Core').[VFSDirectoryRenamedArgs](VFSDirectoryRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs')
33

4-
## VFSDirectoryRenamedArgs.OldPath Property
4+
## VFSDirectoryRenamedArgs.SourcePath Property
55

66
Gets the old path of the renamed directory.
77

88
```csharp
9-
public Atypical.VirtualFileSystem.Core.VFSDirectoryPath OldPath { get; }
9+
public Atypical.VirtualFileSystem.Core.VFSDirectoryPath SourcePath { get; }
1010
```
1111

1212
#### Property Value

docs/api/VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(VFSDirectoryPath,VFSDirectoryPath).md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
Initializes a new instance of the [VFSDirectoryRenamedArgs](VFSDirectoryRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs') class.
77

88
```csharp
9-
public VFSDirectoryRenamedArgs(Atypical.VirtualFileSystem.Core.VFSDirectoryPath oldPath, Atypical.VirtualFileSystem.Core.VFSDirectoryPath newPath);
9+
public VFSDirectoryRenamedArgs(Atypical.VirtualFileSystem.Core.VFSDirectoryPath sourcePath, Atypical.VirtualFileSystem.Core.VFSDirectoryPath destinationPath);
1010
```
1111
#### Parameters
1212

13-
<a name='Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(Atypical.VirtualFileSystem.Core.VFSDirectoryPath,Atypical.VirtualFileSystem.Core.VFSDirectoryPath).oldPath'></a>
13+
<a name='Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(Atypical.VirtualFileSystem.Core.VFSDirectoryPath,Atypical.VirtualFileSystem.Core.VFSDirectoryPath).sourcePath'></a>
1414

15-
`oldPath` [VFSDirectoryPath](VFSDirectoryPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryPath')
15+
`sourcePath` [VFSDirectoryPath](VFSDirectoryPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryPath')
1616

1717
The old path of the renamed directory.
1818

19-
<a name='Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(Atypical.VirtualFileSystem.Core.VFSDirectoryPath,Atypical.VirtualFileSystem.Core.VFSDirectoryPath).newPath'></a>
19+
<a name='Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(Atypical.VirtualFileSystem.Core.VFSDirectoryPath,Atypical.VirtualFileSystem.Core.VFSDirectoryPath).destinationPath'></a>
2020

21-
`newPath` [VFSDirectoryPath](VFSDirectoryPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryPath')
21+
`destinationPath` [VFSDirectoryPath](VFSDirectoryPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryPath')
2222

2323
The new path of the renamed directory.

docs/api/VFSDirectoryRenamedArgs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Inheritance [System.Object](https://docs.microsoft.com/en-us/dotnet/api/System.O
1717

1818
| Properties | |
1919
| :--- | :--- |
20+
| [DestinationPath](VFSDirectoryRenamedArgs.DestinationPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.DestinationPath') | Gets the new path of the renamed directory. |
2021
| [Message](VFSDirectoryRenamedArgs.Message.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.Message') | Gets the message. |
2122
| [MessageTemplate](VFSDirectoryRenamedArgs.MessageTemplate.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.MessageTemplate') | Gets the message template. |
2223
| [MessageWithMarkup](VFSDirectoryRenamedArgs.MessageWithMarkup.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.MessageWithMarkup') | Gets the message with markup. |
23-
| [NewPath](VFSDirectoryRenamedArgs.NewPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.NewPath') | Gets the new path of the renamed directory. |
24-
| [OldPath](VFSDirectoryRenamedArgs.OldPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.OldPath') | Gets the old path of the renamed directory. |
24+
| [SourcePath](VFSDirectoryRenamedArgs.SourcePath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.SourcePath') | Gets the old path of the renamed directory. |
2525
| [Timestamp](VFSDirectoryRenamedArgs.Timestamp.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.Timestamp') | Gets the timestamp when the directory was renamed. |

docs/api/VFSFileRenamedArgs.OldPath.md renamed to docs/api/VFSFileRenamedArgs.DestinationPath.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md 'VirtualFileSystem')
22
### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md#Atypical.VirtualFileSystem.Core 'Atypical.VirtualFileSystem.Core').[VFSFileRenamedArgs](VFSFileRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs')
33

4-
## VFSFileRenamedArgs.OldPath Property
4+
## VFSFileRenamedArgs.DestinationPath Property
55

6-
Gets the old path of the renamed file.
6+
Gets the destination path of the renamed file.
77

88
```csharp
9-
public Atypical.VirtualFileSystem.Core.VFSFilePath OldPath { get; }
9+
public Atypical.VirtualFileSystem.Core.VFSFilePath DestinationPath { get; }
1010
```
1111

1212
#### Property Value
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md 'VirtualFileSystem')
22
### [Atypical.VirtualFileSystem.Core](VirtualFileSystem.md#Atypical.VirtualFileSystem.Core 'Atypical.VirtualFileSystem.Core').[VFSFileRenamedArgs](VFSFileRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs')
33

4-
## VFSFileRenamedArgs.NewPath Property
4+
## VFSFileRenamedArgs.SourcePath Property
55

6-
Gets the new path of the renamed file.
6+
Gets the source path of the renamed file.
77

88
```csharp
9-
public Atypical.VirtualFileSystem.Core.VFSFilePath NewPath { get; }
9+
public Atypical.VirtualFileSystem.Core.VFSFilePath SourcePath { get; }
1010
```
1111

1212
#### Property Value

docs/api/VFSFileRenamedArgs.VFSFileRenamedArgs(VFSFilePath,VFSFilePath).md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
Initializes a new instance of the [VFSFileRenamedArgs](VFSFileRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs') class.
77

88
```csharp
9-
public VFSFileRenamedArgs(Atypical.VirtualFileSystem.Core.VFSFilePath oldPath, Atypical.VirtualFileSystem.Core.VFSFilePath newPath);
9+
public VFSFileRenamedArgs(Atypical.VirtualFileSystem.Core.VFSFilePath sourcePath, Atypical.VirtualFileSystem.Core.VFSFilePath destinationPath);
1010
```
1111
#### Parameters
1212

13-
<a name='Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.VFSFileRenamedArgs(Atypical.VirtualFileSystem.Core.VFSFilePath,Atypical.VirtualFileSystem.Core.VFSFilePath).oldPath'></a>
13+
<a name='Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.VFSFileRenamedArgs(Atypical.VirtualFileSystem.Core.VFSFilePath,Atypical.VirtualFileSystem.Core.VFSFilePath).sourcePath'></a>
1414

15-
`oldPath` [VFSFilePath](VFSFilePath.md 'Atypical.VirtualFileSystem.Core.VFSFilePath')
15+
`sourcePath` [VFSFilePath](VFSFilePath.md 'Atypical.VirtualFileSystem.Core.VFSFilePath')
1616

1717
The old path of the renamed file.
1818

19-
<a name='Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.VFSFileRenamedArgs(Atypical.VirtualFileSystem.Core.VFSFilePath,Atypical.VirtualFileSystem.Core.VFSFilePath).newPath'></a>
19+
<a name='Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.VFSFileRenamedArgs(Atypical.VirtualFileSystem.Core.VFSFilePath,Atypical.VirtualFileSystem.Core.VFSFilePath).destinationPath'></a>
2020

21-
`newPath` [VFSFilePath](VFSFilePath.md 'Atypical.VirtualFileSystem.Core.VFSFilePath')
21+
`destinationPath` [VFSFilePath](VFSFilePath.md 'Atypical.VirtualFileSystem.Core.VFSFilePath')
2222

2323
The new path of the renamed file.

docs/api/VFSFileRenamedArgs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Inheritance [System.Object](https://docs.microsoft.com/en-us/dotnet/api/System.O
1717

1818
| Properties | |
1919
| :--- | :--- |
20+
| [DestinationPath](VFSFileRenamedArgs.DestinationPath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.DestinationPath') | Gets the destination path of the renamed file. |
2021
| [Message](VFSFileRenamedArgs.Message.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.Message') | Gets the message. |
2122
| [MessageTemplate](VFSFileRenamedArgs.MessageTemplate.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.MessageTemplate') | Gets the message template. |
2223
| [MessageWithMarkup](VFSFileRenamedArgs.MessageWithMarkup.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.MessageWithMarkup') | Gets the message with markup. |
23-
| [NewPath](VFSFileRenamedArgs.NewPath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.NewPath') | Gets the new path of the renamed file. |
24-
| [OldPath](VFSFileRenamedArgs.OldPath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.OldPath') | Gets the old path of the renamed file. |
24+
| [SourcePath](VFSFileRenamedArgs.SourcePath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.SourcePath') | Gets the source path of the renamed file. |
2525
| [Timestamp](VFSFileRenamedArgs.Timestamp.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.Timestamp') | Gets the timestamp when the file was renamed. |

docs/api/VirtualFileSystem.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@
119119
This allows you to use a [VFSDirectoryPath](VFSDirectoryPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryPath') as a string.
120120
- **[VFSDirectoryRenamedArgs](VFSDirectoryRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs')** `Class` Provides data for the DirectoryRenamed event.
121121
- **[VFSDirectoryRenamedArgs(VFSDirectoryPath, VFSDirectoryPath)](VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(VFSDirectoryPath,VFSDirectoryPath).md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(Atypical.VirtualFileSystem.Core.VFSDirectoryPath, Atypical.VirtualFileSystem.Core.VFSDirectoryPath)')** `Constructor` Initializes a new instance of the [VFSDirectoryRenamedArgs](VFSDirectoryRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs') class.
122+
- **[DestinationPath](VFSDirectoryRenamedArgs.DestinationPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.DestinationPath')** `Property` Gets the new path of the renamed directory.
122123
- **[Message](VFSDirectoryRenamedArgs.Message.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.Message')** `Property` Gets the message.
123124
- **[MessageTemplate](VFSDirectoryRenamedArgs.MessageTemplate.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.MessageTemplate')** `Property` Gets the message template.
124125
- **[MessageWithMarkup](VFSDirectoryRenamedArgs.MessageWithMarkup.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.MessageWithMarkup')** `Property` Gets the message with markup.
125-
- **[NewPath](VFSDirectoryRenamedArgs.NewPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.NewPath')** `Property` Gets the new path of the renamed directory.
126-
- **[OldPath](VFSDirectoryRenamedArgs.OldPath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.OldPath')** `Property` Gets the old path of the renamed directory.
126+
- **[SourcePath](VFSDirectoryRenamedArgs.SourcePath.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.SourcePath')** `Property` Gets the old path of the renamed directory.
127127
- **[Timestamp](VFSDirectoryRenamedArgs.Timestamp.md 'Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.Timestamp')** `Property` Gets the timestamp when the directory was renamed.
128128
- **[VFSEventArgs](VFSEventArgs.md 'Atypical.VirtualFileSystem.Core.VFSEventArgs')** `Class` Represents the base class for all VFS event arguments.
129129
- **[Message](VFSEventArgs.Message.md 'Atypical.VirtualFileSystem.Core.VFSEventArgs.Message')** `Property` Gets the message.
@@ -162,11 +162,11 @@
162162
This allows you to use a [VFSFilePath](VFSFilePath.md 'Atypical.VirtualFileSystem.Core.VFSFilePath') as a string.
163163
- **[VFSFileRenamedArgs](VFSFileRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs')** `Class` Provides data for the FileRenamed event.
164164
- **[VFSFileRenamedArgs(VFSFilePath, VFSFilePath)](VFSFileRenamedArgs.VFSFileRenamedArgs(VFSFilePath,VFSFilePath).md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.VFSFileRenamedArgs(Atypical.VirtualFileSystem.Core.VFSFilePath, Atypical.VirtualFileSystem.Core.VFSFilePath)')** `Constructor` Initializes a new instance of the [VFSFileRenamedArgs](VFSFileRenamedArgs.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs') class.
165+
- **[DestinationPath](VFSFileRenamedArgs.DestinationPath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.DestinationPath')** `Property` Gets the destination path of the renamed file.
165166
- **[Message](VFSFileRenamedArgs.Message.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.Message')** `Property` Gets the message.
166167
- **[MessageTemplate](VFSFileRenamedArgs.MessageTemplate.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.MessageTemplate')** `Property` Gets the message template.
167168
- **[MessageWithMarkup](VFSFileRenamedArgs.MessageWithMarkup.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.MessageWithMarkup')** `Property` Gets the message with markup.
168-
- **[NewPath](VFSFileRenamedArgs.NewPath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.NewPath')** `Property` Gets the new path of the renamed file.
169-
- **[OldPath](VFSFileRenamedArgs.OldPath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.OldPath')** `Property` Gets the old path of the renamed file.
169+
- **[SourcePath](VFSFileRenamedArgs.SourcePath.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.SourcePath')** `Property` Gets the source path of the renamed file.
170170
- **[Timestamp](VFSFileRenamedArgs.Timestamp.md 'Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.Timestamp')** `Property` Gets the timestamp when the file was renamed.
171171
- **[VFSIndex](VFSIndex.md 'Atypical.VirtualFileSystem.Core.VFSIndex')** `Class` Represents the index of the virtual file system.
172172
- **[Count](VFSIndex.Count.md 'Atypical.VirtualFileSystem.Core.VFSIndex.Count')** `Property` Gets the total count of nodes in the index.

docs/links

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,16 @@ P:Atypical.VirtualFileSystem.Core.VFSFileMovedArgs.Message|VFSFileMovedArgs.Mess
156156
P:Atypical.VirtualFileSystem.Core.VFSFileMovedArgs.MessageWithMarkup|VFSFileMovedArgs.MessageWithMarkup.md|MessageWithMarkup
157157
M:Atypical.VirtualFileSystem.Core.VFSFileMovedArgs.#ctor(Atypical.VirtualFileSystem.Core.VFSFilePath,Atypical.VirtualFileSystem.Core.VFSFilePath)|VFSFileMovedArgs.VFSFileMovedArgs(VFSFilePath,VFSFilePath).md|VFSFileMovedArgs(VFSFilePath, VFSFilePath)
158158
T:Atypical.VirtualFileSystem.Core.VFSFileMovedArgs|VFSFileMovedArgs.md|VFSFileMovedArgs
159-
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.OldPath|VFSDirectoryRenamedArgs.OldPath.md|OldPath
160-
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.NewPath|VFSDirectoryRenamedArgs.NewPath.md|NewPath
159+
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.SourcePath|VFSDirectoryRenamedArgs.SourcePath.md|SourcePath
160+
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.DestinationPath|VFSDirectoryRenamedArgs.DestinationPath.md|DestinationPath
161161
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.Timestamp|VFSDirectoryRenamedArgs.Timestamp.md|Timestamp
162162
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.MessageTemplate|VFSDirectoryRenamedArgs.MessageTemplate.md|MessageTemplate
163163
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.Message|VFSDirectoryRenamedArgs.Message.md|Message
164164
P:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.MessageWithMarkup|VFSDirectoryRenamedArgs.MessageWithMarkup.md|MessageWithMarkup
165165
M:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs.#ctor(Atypical.VirtualFileSystem.Core.VFSDirectoryPath,Atypical.VirtualFileSystem.Core.VFSDirectoryPath)|VFSDirectoryRenamedArgs.VFSDirectoryRenamedArgs(VFSDirectoryPath,VFSDirectoryPath).md|VFSDirectoryRenamedArgs(VFSDirectoryPath, VFSDirectoryPath)
166166
T:Atypical.VirtualFileSystem.Core.VFSDirectoryRenamedArgs|VFSDirectoryRenamedArgs.md|VFSDirectoryRenamedArgs
167-
P:Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.OldPath|VFSFileRenamedArgs.OldPath.md|OldPath
168-
P:Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.NewPath|VFSFileRenamedArgs.NewPath.md|NewPath
167+
P:Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.SourcePath|VFSFileRenamedArgs.SourcePath.md|SourcePath
168+
P:Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.DestinationPath|VFSFileRenamedArgs.DestinationPath.md|DestinationPath
169169
P:Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.Timestamp|VFSFileRenamedArgs.Timestamp.md|Timestamp
170170
P:Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.MessageTemplate|VFSFileRenamedArgs.MessageTemplate.md|MessageTemplate
171171
P:Atypical.VirtualFileSystem.Core.VFSFileRenamedArgs.Message|VFSFileRenamedArgs.Message.md|Message

0 commit comments

Comments
 (0)