System.ComponentModel.LicenseException.LicenseException C# (CSharp) Method

LicenseException() protected method

Need this constructor since Exception implements ISerializable.
protected LicenseException ( SerializationInfo info, StreamingContext context ) : Microsoft.Win32
info SerializationInfo
context StreamingContext
return Microsoft.Win32
        protected LicenseException(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            _type = (Type)info.GetValue("type", typeof(Type));
            _instance = info.GetValue("instance", typeof(object));
        }

Same methods

LicenseException::LicenseException ( Type type ) : Microsoft.Win32
LicenseException::LicenseException ( Type type, object instance ) : Microsoft.Win32
LicenseException::LicenseException ( Type type, object instance, string message ) : Microsoft.Win32
LicenseException::LicenseException ( Type type, object instance, string message, Exception innerException ) : Microsoft.Win32