Table of Contents

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 string

The name of the data type associated with the file read operation.

errorMessage string

A message describing the error that occurred during the file read operation.

failType FileOperationFailType

The 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

string

ErrorMessage

Gets the error message associated with the current operation or state.

public string ErrorMessage { get; }

Property Value

string

FailType

Gets the type of failure that occurred during a file operation.

public FileOperationFailType FailType { get; }

Property Value

FileOperationFailType