Share via


Validator.CheckString Method (String, String, String, IPropertyValidator, Int32, Boolean)

Inline validation method for string properties that cannot be too long. Whether it can be empty or not can be configured.

Namespace:  Microsoft.TeamFoundation.TestManagement.Client.Internal
Assembly:  Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)

Syntax

'Declaration
Public Shared Function CheckString ( _
    value As String, _
    propertyName As String, _
    displayPropertyName As String, _
    propertyValidator As IPropertyValidator, _
    maxLength As Integer, _
    canBeEmpty As Boolean _
) As Boolean
public static bool CheckString(
    string value,
    string propertyName,
    string displayPropertyName,
    IPropertyValidator propertyValidator,
    int maxLength,
    bool canBeEmpty
)
public:
static bool CheckString(
    String^ value, 
    String^ propertyName, 
    String^ displayPropertyName, 
    IPropertyValidator^ propertyValidator, 
    int maxLength, 
    bool canBeEmpty
)
static member CheckString : 
        value:string * 
        propertyName:string * 
        displayPropertyName:string * 
        propertyValidator:IPropertyValidator * 
        maxLength:int * 
        canBeEmpty:bool -> bool
public static function CheckString(
    value : String, 
    propertyName : String, 
    displayPropertyName : String, 
    propertyValidator : IPropertyValidator, 
    maxLength : int, 
    canBeEmpty : boolean
) : boolean

Parameters

Return Value

Type: System.Boolean
True if the validation was successful; false if any part of the validation failed.

.NET Framework Security

See Also

Reference

Validator Class

CheckString Overload

Microsoft.TeamFoundation.TestManagement.Client.Internal Namespace