Class FileImportedArgs
Event arguments for the FileImported.
Inherited Members
Namespace: Gorgon.IO
Assembly: Gorgon.FileSystem.dll
Syntax
public class FileImportedArgs : EventArgs
Constructors
| Edit this page View SourceFileImportedArgs(string, IGorgonVirtualFile)
Initializes a new instance of the FileImportedArgs class.
Declaration
public FileImportedArgs(string physicalFilePath, IGorgonVirtualFile virtualFile)
Parameters
Type | Name | Description |
---|---|---|
string | physicalFilePath | The physical file path to the file being imported. |
IGorgonVirtualFile | virtualFile | The virtual file representing the physical file that was imported into the file system. |
Properties
| Edit this page View SourcePhysicalFilePath
Property to return the physical file path of the file being imported.
Declaration
public string PhysicalFilePath { get; }
Property Value
Type | Description |
---|---|
string |
VirtualFile
Property to return the virtual file representing the imported physical file.
Declaration
public IGorgonVirtualFile VirtualFile { get; }
Property Value
Type | Description |
---|---|
IGorgonVirtualFile |