ParserHelpers.IsIdentifierPart Method
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is valid for use in identifier.
Namespace: System.Web.Razor.Parser
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Shared Function IsIdentifierPart ( _
value As Char _
) As Boolean
'Usage
Dim value As Char
Dim returnValue As Boolean
returnValue = ParserHelpers.IsIdentifierPart(value)
public static bool IsIdentifierPart(
char value
)
public:
static bool IsIdentifierPart(
wchar_t value
)
static member IsIdentifierPart :
value:char -> bool
public static function IsIdentifierPart(
value : char
) : boolean
Parameters
- value
Type: System.Char
The value to check.
Return Value
Type: System.Boolean
true if the specified character is valid for use in identifier; otherwise, false.