System.BadImageFormatException.BadImageFormatException C# (CSharp) Method

BadImageFormatException() protected method

protected BadImageFormatException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System
        protected BadImageFormatException(SerializationInfo info, StreamingContext context) : base(info, context) {
            // Base class constructor will check info != null.

            _fileName = info.GetString("BadImageFormat_FileName");
            try
            {
                _fusionLog = info.GetString("BadImageFormat_FusionLog");
            }
            catch 
            {
                _fusionLog = null;
            }
        }

Same methods

BadImageFormatException::BadImageFormatException ( ) : System
BadImageFormatException::BadImageFormatException ( String message ) : System
BadImageFormatException::BadImageFormatException ( String message, Exception inner ) : System
BadImageFormatException::BadImageFormatException ( String message, String fileName ) : System
BadImageFormatException::BadImageFormatException ( String message, String fileName, Exception inner ) : System
BadImageFormatException::BadImageFormatException ( String fileName, String fusionLog, int hResult ) : System