System.Reflection.ReflectionTypeLoadException.ReflectionTypeLoadException C# (CSharp) Method

ReflectionTypeLoadException() private method

private ReflectionTypeLoadException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System
        internal ReflectionTypeLoadException(SerializationInfo info, StreamingContext context) : base (info, context) {
            _classes = (Type[])(info.GetValue("Types", typeof(Type[])));
            _exceptions = (Exception[])(info.GetValue("Exceptions", typeof(Exception[])));
        }
    

Same methods

ReflectionTypeLoadException::ReflectionTypeLoadException ( ) : System
ReflectionTypeLoadException::ReflectionTypeLoadException ( String message ) : System
ReflectionTypeLoadException::ReflectionTypeLoadException ( Type classes, Exception exceptions ) : System
ReflectionTypeLoadException::ReflectionTypeLoadException ( Type classes, Exception exceptions, String message ) : System