System.IO.FileLoadException.FileLoadException C# (CSharp) Méthode

FileLoadException() protected méthode

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

            _fileName = info.GetString("FileLoad_FileName");

            try
            {
                _fusionLog = info.GetString("FileLoad_FusionLog");
            }
            catch 
            {
                _fusionLog = null;
            }
				
        }

Same methods

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