Método Condition.Validate
Validates the condition using the given mode.
Namespace: Microsoft.SqlServer.Management.Dmf
Assembly: Microsoft.SqlServer.Dmf (em Microsoft.SqlServer.Dmf.dll)
Sintaxe
'Declaração
Public Sub Validate ( _
mode As String _
)
'Uso
Dim instance As Condition
Dim mode As String
instance.Validate(mode)
public void Validate(
string mode
)
public:
void Validate(
String^ mode
)
member Validate :
mode:string -> unit
public function Validate(
mode : String
)
Parâmetros
- mode
Tipo: System.String
A String value that specifies the mode used to validate the condition.
Comentários
This method validates the expression and checks whether it applies to the specified facet.
Exemplos
C#
c.Validate(mode);
VB
c.Validate(mode)