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

Inline validation method for string properties that cannot be empty or too long.

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 _
) As Boolean
public static bool CheckString(
    string value,
    string propertyName,
    string displayPropertyName,
    IPropertyValidator propertyValidator,
    int maxLength
)
public:
static bool CheckString(
    String^ value, 
    String^ propertyName, 
    String^ displayPropertyName, 
    IPropertyValidator^ propertyValidator, 
    int maxLength
)
static member CheckString : 
        value:string * 
        propertyName:string * 
        displayPropertyName:string * 
        propertyValidator:IPropertyValidator * 
        maxLength:int -> bool
public static function CheckString(
    value : String, 
    propertyName : String, 
    displayPropertyName : String, 
    propertyValidator : IPropertyValidator, 
    maxLength : int
) : boolean

Parameters

  • value
    Type: String
  • propertyName
    Type: String
  • displayPropertyName
    Type: String
  • maxLength
    Type: Int32

Return Value

Type: 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