[ Team LiB ] Previous Section Next Section

ReflectionTypeLoadExceptionserializable

System.Reflection (mscorlib.dll)sealed class

This exception is thrown if any of the types from a module cannot be loaded when Module.GetTypes( ) is called. This exception provides access to the correctly loaded classes via Types.

public sealed class ReflectionTypeLoadException : SystemException {
// Public Constructors
   public ReflectionTypeLoadException(Type[ ] classes, Exception[ ] exceptions);
   public ReflectionTypeLoadException(Type[ ] classes, Exception[ ] exceptions, 
        string message);
// Public Instance Properties
   public Exception[ ] LoaderExceptions{get; }
   public Type[ ] Types{get; }
// Public Instance Methods
   public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info,
       System.Runtime.Serialization.StreamingContext context)
// overrides Exception
}

Hierarchy

System.Object System.Exception(System.Runtime.Serialization.ISerializable) System.SystemException ReflectionTypeLoadException

    [ Team LiB ] Previous Section Next Section