UnknownPropertyException Constructors

Definition

Overloads

UnknownPropertyException()

Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.

UnknownPropertyException(String)

Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.

UnknownPropertyException(String, Exception)

Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.

UnknownPropertyException()

Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.

public UnknownPropertyException ();
Public Sub New ()

Applies to

UnknownPropertyException(String)

Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.

public UnknownPropertyException (string propertyName);
new Microsoft.SqlServer.Management.Smo.UnknownPropertyException : string -> Microsoft.SqlServer.Management.Smo.UnknownPropertyException
Public Sub New (propertyName As String)

Parameters

propertyName
String

The unknown property name.

Applies to

UnknownPropertyException(String, Exception)

Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.

public UnknownPropertyException (string message, Exception innerException);
new Microsoft.SqlServer.Management.Smo.UnknownPropertyException : string * Exception -> Microsoft.SqlServer.Management.Smo.UnknownPropertyException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message of the exception as string.

innerException
Exception

The T:System.Exception instance that caused the current exception.

Applies to