[ Team LiB ] Previous Section Next Section

FileLoadExceptionECMA 1.0, serializable

System.IO (mscorlib.dll)class

This exception is thrown when a file cannot be loaded.

public class FileLoadException : IOException {
// Public Constructors
   public FileLoadException( );
   public FileLoadException(string message);
   public FileLoadException(string message, Exception inner);
   public FileLoadException(string message, string fileName);
   public FileLoadException(string message, string fileName, Exception inner);
// Protected Constructors
   protected FileLoadException(System.Runtime.Serialization.SerializationInfo info,
       System.Runtime.Serialization.StreamingContext context);
// Public Instance Properties
   public string FileName{get; }
   public string FusionLog{get; }
   public override string Message{get; } 
// overrides Exception
// Public Instance Methods
   public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info,
       System.Runtime.Serialization.StreamingContext context)
// overrides Exception
   public override string ToString( );    
// overrides Exception
}

Hierarchy

System.Object System.Exception(System.Runtime.Serialization.ISerializable) System.SystemException IOException FileLoadException

    [ Team LiB ] Previous Section Next Section