Share via


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

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

This method trims the string and do comparison.

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

Syntax

'Declaration
Public Shared Function CheckAndTrimString ( _
    ByRef value As String, _
    propertyName As String, _
    displayPropertyName As String, _
    propertyValidator As IPropertyValidator, _
    maxLength As Integer _
) As Boolean
public static bool CheckAndTrimString(
    ref string value,
    string propertyName,
    string displayPropertyName,
    IPropertyValidator propertyValidator,
    int maxLength
)
public:
static bool CheckAndTrimString(
    String^% value, 
    String^ propertyName, 
    String^ displayPropertyName, 
    IPropertyValidator^ propertyValidator, 
    int maxLength
)
static member CheckAndTrimString : 
        value:string byref * 
        propertyName:string * 
        displayPropertyName:string * 
        propertyValidator:IPropertyValidator * 
        maxLength:int -> bool
public static function CheckAndTrimString(
    value : String, 
    propertyName : String, 
    displayPropertyName : String, 
    propertyValidator : IPropertyValidator, 
    maxLength : int
) : 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

CheckAndTrimString Overload

Microsoft.TeamFoundation.TestManagement.Client.Internal Namespace