Tokenizer(Of TSymbol, TSymbolType).CharOrWhiteSpace Method

Returns a function delegate, that accepts a character parameter and returns a value that indicates whether the character parameter is equal to specified character or white space.

Namespace:  System.Web.Razor.Tokenizer
Assembly:  System.Web.Razor (in System.Web.Razor.dll)

'Declaration
Protected Function CharOrWhiteSpace ( _
	character As Char _
) As Func(Of Char, Boolean)
'Usage
Dim character As Char 
Dim returnValue As Func(Of Char, Boolean)

returnValue = Me.CharOrWhiteSpace(character)

Parameters

character
Type: System.Char
The character used to compare.

Return Value

Type: System.Func(Of Char, Boolean)
A function delegate.
Show: