LanguageCharacteristics<TTokenizer, TSymbol, TSymbolType>.GetKnownSymbolType Method
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the specific language symbol type for the given symbol type.
Namespace: System.Web.Razor.Parser
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public MustOverride Function GetKnownSymbolType ( _
type As KnownSymbolType _
) As TSymbolType
'Usage
Dim instance As LanguageCharacteristics
Dim type As KnownSymbolType
Dim returnValue As TSymbolType
returnValue = instance.GetKnownSymbolType(type)
public abstract TSymbolType GetKnownSymbolType(
KnownSymbolType type
)
public:
virtual TSymbolType GetKnownSymbolType(
KnownSymbolType type
) abstract
abstract GetKnownSymbolType :
type:KnownSymbolType -> 'TSymbolType
public abstract function GetKnownSymbolType(
type : KnownSymbolType
) : TSymbolType
Parameters
- type
Type: System.Web.Razor.Tokenizer.Symbols.KnownSymbolType
The symbol type to get.
Return Value
Type: TSymbolType
The specific language symbol type for the given symbol type.
See Also
Reference
LanguageCharacteristics<TTokenizer, TSymbol, TSymbolType> Class