ValidationState Constructor (Exception, String, Boolean)
Do not reference this member directly in your code. It supports the SQL Server infrastructure.. Initializes a new instance of the ValidationState class with the specified exception, binding key, and fault type.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Sub New ( _
error As Exception, _
bindingKey As String, _
isWarning As Boolean _
)
'Usage
Dim error As Exception
Dim bindingKey As String
Dim isWarning As Boolean
Dim instance As New ValidationState(error, bindingKey, _
isWarning)
public ValidationState(
Exception error,
string bindingKey,
bool isWarning
)
public:
ValidationState(
Exception^ error,
String^ bindingKey,
bool isWarning
)
new :
error:Exception *
bindingKey:string *
isWarning:bool -> ValidationState
public function ValidationState(
error : Exception,
bindingKey : String,
isWarning : boolean
)
Parameters
- error
Type: System.Exception
Specifies the exception that is the source of the validation error.
- bindingKey
Type: System.String
Specifies the name of the property that generated the exception.
- isWarning
Type: System.Boolean
Specifies whether the fault is a warning. If true, the fault is a warning. If false, the fault is an error.