ValueMismatchPropertyException Constructors

Definition

Initializes a new instance of the ValueMismatchPropertyException class.

Overloads

ValueMismatchPropertyException()

Initializes a new instance of the ValueMismatchPropertyException class with the default property values.

ValueMismatchPropertyException(ISfcProperty, Object, Object)

Initializes a new instance of the ValueMismatchPropertyException class with the specified property and values.

ValueMismatchPropertyException()

Initializes a new instance of the ValueMismatchPropertyException class with the default property values.

public:
 ValueMismatchPropertyException();
public ValueMismatchPropertyException();
Public Sub New ()

Applies to

ValueMismatchPropertyException(ISfcProperty, Object, Object)

Initializes a new instance of the ValueMismatchPropertyException class with the specified property and values.

public:
 ValueMismatchPropertyException(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcProperty ^ property, System::Object ^ existingValue, System::Object ^ assignedValue);
public ValueMismatchPropertyException(Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty property, object existingValue, object assignedValue);
new Microsoft.SqlServer.Management.Data.ValueMismatchPropertyException : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty * obj * obj -> Microsoft.SqlServer.Management.Data.ValueMismatchPropertyException
Public Sub New (property As ISfcProperty, existingValue As Object, assignedValue As Object)

Parameters

property
ISfcProperty

An interface that represents the property exception.

existingValue
Object

The current value for the property.

assignedValue
Object

The assigned value for the property.

Applies to