PropertyTypeMismatchException Constructors

Definition

Overloads

PropertyTypeMismatchException()

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

PropertyTypeMismatchException(String)

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

PropertyTypeMismatchException(String, Exception)

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

PropertyTypeMismatchException(String, String, String)

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

PropertyTypeMismatchException()

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

public PropertyTypeMismatchException ();
Public Sub New ()

Applies to

PropertyTypeMismatchException(String)

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

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

Parameters

message
String

The message of the exception as string.

Applies to

PropertyTypeMismatchException(String, Exception)

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

public PropertyTypeMismatchException (string message, Exception innerException);
new Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException : string * Exception -> Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException
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

PropertyTypeMismatchException(String, String, String)

Constructor for the Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException.

public PropertyTypeMismatchException (string propertyName, string receivedType, string expectedType);
new Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException : string * string * string -> Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException
Public Sub New (propertyName As String, receivedType As String, expectedType As String)

Parameters

propertyName
String

The property that was mismatched.

receivedType
String

The incorrect type received for the property.

expectedType
String

The expected typ for the property.

Applies to