Table of Contents

Class FileEvent

Namespace
Stride.Core.IO
Assembly
Stride.Core.IO.dll

� file event used notified by DirectoryWatcher

public class FileEvent : EventArgs
Inheritance
FileEvent
Derived
Inherited Members

Constructors

FileEvent(FileEventChangeType, string, string)

Initializes a new instance of the FileEvent class.

public FileEvent(FileEventChangeType changeType, string name, string fullPath)

Parameters

changeType FileEventChangeType

Type of the change.

name string

The name.

fullPath string

The full path.

Properties

ChangeType

Gets the type of the change.

public FileEventChangeType ChangeType { get; }

Property Value

FileEventChangeType

The type of the change.

FullPath

Gets the full path.

public string FullPath { get; }

Property Value

string

The full path.

Name

Gets the name.

public string Name { get; }

Property Value

string

The name.