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

LicenseException() public method

Initializes a new instance of the class for the specified type and instance with the specified message.

public LicenseException ( Type type, object instance, string message ) : Microsoft.Win32
type System.Type
instance object
message string
return Microsoft.Win32
        public LicenseException(Type type, object instance, string message) : base(message)
        {
            _type = type;
            _instance = instance;
            HResult = HResults.License;
        }
        /// <summary>

Same methods

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