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

LicenseException() public method

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

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

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 ) : Microsoft.Win32