VBCodeParser Class
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Represents a Visual Basic code parser.
Inheritance Hierarchy
System.Object
System.Web.Razor.Parser.ParserBase
System.Web.Razor.Parser.TokenizerBackedParser<VBTokenizer, VBSymbol, VBSymbolType>
System.Web.Razor.Parser.VBCodeParser
Namespace: System.Web.Razor.Parser
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Class VBCodeParser _
Inherits TokenizerBackedParser(Of VBTokenizer, VBSymbol, VBSymbolType)
'Usage
Dim instance As VBCodeParser
public class VBCodeParser : TokenizerBackedParser<VBTokenizer, VBSymbol, VBSymbolType>
public ref class VBCodeParser : public TokenizerBackedParser<VBTokenizer^, VBSymbol^, VBSymbolType>
type VBCodeParser =
class
inherit TokenizerBackedParser<VBTokenizer, VBSymbol, VBSymbolType>
end
public class VBCodeParser extends TokenizerBackedParser<VBTokenizer, VBSymbol, VBSymbolType>
The VBCodeParser type exposes the following members.
Constructors
Name | Description | |
---|---|---|
VBCodeParser | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBCodeParser class. |
Top
Properties
Name | Description | |
---|---|---|
Context | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the ParserContext. (Inherited from ParserBase.) | |
CurrentLocation | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current location of the current instance. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
CurrentSymbol | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current symbol of this instance. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
EndOfFile | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the tokenizer is in the end of file. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
IsMarkupParser | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the parser is a markup parser. (Inherited from ParserBase.) | |
Keywords | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the keywords associated with the code. | |
Language | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language for the parser. (Overrides TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.Language.) | |
OtherParser | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the other parser. (Overrides ParserBase.OtherParser.) | |
PreviousSymbol | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code..Gets the previous symbol of this instance. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Span | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the SpanBuilder associated with this instance. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
SpanConfig | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span configuration. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Tokenizer | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the tokenizer. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) |
Top
Methods
Name | Description | |
---|---|---|
Accept(IEnumerable<TSymbol>) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the list of symbols (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Accept(TSymbol) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the specified symbol. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptAll | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts all types of tokenizer. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptAndMoveNext | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts and moves to the next tokenizer. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptSingleWhiteSpaceCharacter | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts single whitespace character. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptUntil(TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptUntil(TSymbolType, TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found and it will backup so that the next token is of the given type. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptUntil(TSymbolType, TSymbolType, TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given tokens until a token of the given type is found. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptVBSpaces | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts spaces in the VB code. | |
AcceptWhile(TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the token while a token of the given type is not found. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptWhile(TSymbolType, TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptWhile(TSymbolType, TSymbolType, TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AcceptWhiteSpaceInLines | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts whitespace in lines. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AddMarkerSymbolIfNecessary() | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
AddMarkerSymbolIfNecessary(SourceLocation) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Assert | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Checks for a condition and displays a keyword in the code. | |
AssertDirective | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Asserts the given directive. | |
At(TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token is at the specified type. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
At(String) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the directive is ‘AT’ directive. | |
At(VBKeyword) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the given keyword is ‘AT’. | |
AtIdentifier | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token is at the specified identifier. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Balance(BalancingModes) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parsing is balance. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Balance(BalancingModes, TSymbolType, TSymbolType, SourceLocation) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parsing is balance. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
BuildSpan | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a specified span. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
ConfigureSpan(Action<SpanBuilder>) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Configures the span. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
ConfigureSpan(Action<SpanBuilder, Action<SpanBuilder>>) | Configures the span. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
EndTerminatedDirective | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Ends a terminated directive. | |
EndTerminatedDirectiveBody | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the termination of directive body is ended. | |
EndTerminatedStatement(VBKeyword, Boolean, Boolean) | Ends a termination of statement. | |
EndTerminatedStatement(VBKeyword, Boolean, Boolean, String) | Ends a termination of statement. | |
EnsureCurrent | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether to ensure the current parser. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Equals | (Inherited from Object.) | |
Expected(TSymbolType[]) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the expected token with the given types. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Expected(KnownSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the expected token with the given type. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Finalize | (Inherited from Object.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
HandleEmbeddedTransition() | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition. (Overrides TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.HandleEmbeddedTransition().) | |
HandleEmbeddedTransition(VBSymbol) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition. | |
HandleExitOrContinue | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the code that handles the Exit or Continue keyword. | |
HandleTransition | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a code that handles a transition. | |
HelperDirective | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the code is a helper directive. | |
ImportsStatement | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code imports a statement. | |
InheritsStatement | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code inherits a statement. | |
Initialize | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a specified span. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
IsAtEmbeddedTransition | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is at embedded transition. (Overrides TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.IsAtEmbeddedTransition(Boolean, Boolean).) | |
IsDirectiveDefined | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is directive defined. | |
KeywordTerminatedStatement | Indicates a keyword that terminates a statement. | |
LayoutDirective | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a layout directive. | |
MapDirective | Maps a given directive. | |
MapKeyword | Maps a given keyword. | |
MemberwiseClone | (Inherited from Object.) | |
NestedBlock | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a nested block. | |
NextIs(TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type would pass. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
NextToken | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser advances to the next token. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Optional(TSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Optional(KnownSymbolType) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Optional(VBKeyword) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the keyword from the code is optional. | |
OptionStatement | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is an option statement. | |
OtherParserBlock() | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parser block. | |
OtherParserBlock(String, String) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parser block. | |
Output(AcceptedCharacters) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with accepted characters. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Output(SpanKind) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with span kind. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Output(SpanKind, AcceptedCharacters) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with a given span kind and accepted characters. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
OutputSpanBeforeRazorComment | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Spans the output before Razor comment. (Overrides TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.OutputSpanBeforeRazorComment().) | |
ParseBlock | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Blocks the parsing. (Overrides ParserBase.ParseBlock().) | |
ParseDocument | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates documentation for the parse. (Inherited from ParserBase.) | |
ParseSection | Parses the section in ordered list of the elements. (Inherited from ParserBase.) | |
PushSpanConfig() | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Pushes the span configuration. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
PushSpanConfig(Action<SpanBuilder>) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Pushes the span configuration. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
PushSpanConfig(Action<SpanBuilder, Action<SpanBuilder>>) | Pushes the span configuration. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
PutBack(TSymbol) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the transition back. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
PutCurrentBack | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the current transition back. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
RazorComment | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Displays the razor comment. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
ReadVBSpaces | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads a list of Visual Basic spaces. | |
ReadWhile | Reads a token while the condition is not reached. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
Required(VBSymbolType, String) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the expected symbol is required. | |
Required(TSymbolType, Boolean, String) | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the expected token is required. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) | |
ReservedWord | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a reserved word. | |
SectionDirective | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a section directive. | |
SessionStateDirective | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code has a session state directive. | |
ToString | (Inherited from Object.) | |
Was | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type was parsed. (Inherited from TokenizerBackedParser<TTokenizer, TSymbol, TSymbolType>.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.