ParserHelpers.IsTerminatingQuotedStringToken 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 a terminating quoted string.
Namespace: System.Web.Razor.Parser
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Shared Function IsTerminatingQuotedStringToken ( _
value As Char _
) As Boolean
'Usage
Dim value As Char
Dim returnValue As Boolean
returnValue = ParserHelpers.IsTerminatingQuotedStringToken(value)
public static bool IsTerminatingQuotedStringToken(
char value
)
public:
static bool IsTerminatingQuotedStringToken(
wchar_t value
)
static member IsTerminatingQuotedStringToken :
value:char -> bool
public static function IsTerminatingQuotedStringToken(
value : char
) : boolean
Parameters
- value
Type: System.Char
The value to check.
Return Value
Type: System.Boolean
true if the specified character value is a terminating quoted string; otherwise, false.