Class FileOperationFailedEventArgs
- Namespace
- rF2SharedMemoryNet
- Assembly
- rF2SharedMemoryNet.dll
Provides data for the event that is raised when a file read operation fails.
public class FileOperationFailedEventArgs : EventArgs
- Inheritance
-
FileOperationFailedEventArgs
- Inherited Members
Constructors
FileOperationFailedEventArgs(string, string, FileOperationFailType)
Provides data for the event that is raised when a file read operation fails.
public FileOperationFailedEventArgs(string dataTypeName, string errorMessage, FileOperationFailType failType)
Parameters
dataTypeName
stringThe name of the data type associated with the file read operation.
errorMessage
stringA message describing the error that occurred during the file read operation.
failType
FileOperationFailTypeThe type of failure that occurred during the file operation.
Properties
DataTypeName
Gets the name of the data type associated with the file that failed to be read.
public string DataTypeName { get; }
Property Value
ErrorMessage
Gets the error message associated with the current operation or state.
public string ErrorMessage { get; }
Property Value
FailType
Gets the type of failure that occurred during a file operation.
public FileOperationFailType FailType { get; }