BadImageFormatException.FileName Property
Definition
Gets the name of the file that causes this exception.
public:
property System::String ^ FileName { System::String ^ get(); };
public string FileName { get; }
member this.FileName : string
Public ReadOnly Property FileName As String
Property Value
The name of the file with the invalid image, or a null reference if no file name was passed to the constructor for the current instance.
Remarks
This property returns the name of the file supplied to the constructor for the current instance, if any. If the file name was not specified or is a null reference (Nothing
in Visual Basic), this property returns a null reference.
This property is read-only.