C# Class System.ComponentModel.LicenseException

Inheritance: System.SystemException
Show file Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
LicenseException ( Type type ) : Microsoft.Win32

Initializes a new instance of the class for the specified type.

LicenseException ( Type type, object instance ) : Microsoft.Win32

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

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

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

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

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

Protected Methods

Method Description
LicenseException ( SerializationInfo info, StreamingContext context ) : Microsoft.Win32

Need this constructor since Exception implements ISerializable.

Private Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

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

LicenseException() public method

Initializes a new instance of the class for the specified type.

public LicenseException ( Type type ) : Microsoft.Win32
type System.Type
return Microsoft.Win32

LicenseException() public method

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

public LicenseException ( Type type, object instance ) : Microsoft.Win32
type System.Type
instance object
return Microsoft.Win32

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

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