FileEvent Class
Namespace: Stride.Core.IOAssembly: Stride.Core.IO.dll
� file event used notified by DirectoryWatcher
System.Object → System.EventArgs →
FileEvent
Derived from FileEvent: FileRenameEvent
public class FileEvent : EventArgs
| Name | Description | |
|---|---|---|
| Constructors | ||
| FileEvent(FileEventChangeType, String, String) | Initializes a new instance of the FileEvent class. |
|
| Properties | ||
| ChangeType | Gets the type of the change. |
|
| FullPath | Gets the full path. |
|
| Name | Gets the name. |
|
Constructors
FileEvent(FileEventChangeType, String, String)
Initializes a new instance of the FileEvent class.
public FileEvent(FileEventChangeType changeType, string name, string fullPath)
Parameters
| Type | Name | Description |
|---|---|---|
| FileEventChangeType | changeType | Type of the change. |
| System.String | name | The name. |
| System.String | fullPath | The full path. |
Properties
ChangeType
Gets the type of the change.
public FileEventChangeType ChangeType { get; }
Property Value
| Type | Description |
|---|---|
| FileEventChangeType | The type of the change. |
FullPath
Gets the full path.
public string FullPath { get; }
Property Value
| Type | Description |
|---|---|
| System.String | The full path. |
Name
Gets the name.
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| System.String | The name. |
Inherited Members
System.EventArgs.Empty