PasswordValidator<TUser>.IsLetterOrDigit(Char) Method

Definition

Returns a flag indicating whether the supplied character is an ASCII letter or digit.

public:
 virtual bool IsLetterOrDigit(char c);
public virtual bool IsLetterOrDigit (char c);
abstract member IsLetterOrDigit : char -> bool
override this.IsLetterOrDigit : char -> bool
Public Overridable Function IsLetterOrDigit (c As Char) As Boolean

Parameters

c
Char

The character to check if it is an ASCII letter or digit.

Returns

True if the character is an ASCII letter or digit, otherwise false.

Applies to