System.TypeLoadException.TypeLoadException C# (CSharp) Method

TypeLoadException() protected method

protected TypeLoadException ( SerializationInfo info, StreamingContext context ) : System
info SerializationInfo
context StreamingContext
return System
        protected TypeLoadException(SerializationInfo info, StreamingContext context) : base(info, context) {
            if (info == null)
                throw new ArgumentNullException("info");

            ClassName =  info.GetString("TypeLoadClassName");
            AssemblyName = info.GetString("TypeLoadAssemblyName");
            MessageArg = info.GetString("TypeLoadMessageArg");
            ResourceId = info.GetInt32("TypeLoadResourceID");
        }
    

Same methods

TypeLoadException::TypeLoadException ( ) : System
TypeLoadException::TypeLoadException ( String message ) : System
TypeLoadException::TypeLoadException ( String message, Exception inner ) : System
TypeLoadException::TypeLoadException ( String className, String assemblyName, String messageArg, int resourceId ) : System