FileLoadException.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; }
public string? FileName { get; }
member this.FileName : string
Public ReadOnly Property FileName As String

Property Value

A String containing 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, this property returns a null reference.

This property is read-only.

Applies to

See also