TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>.Accept Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
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 |
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. |
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
protected internal void Accept(System.Collections.Generic.IEnumerable<TSymbol> symbols);
member this.Accept : seq<'Symbol (requires 'Symbol :> System.Web.Razor.Tokenizer.Symbols.SymbolBase<'SymbolType>)> -> unit
Protected Friend Sub Accept (symbols As IEnumerable(Of TSymbol))
Parameters
- symbols
- IEnumerable<TSymbol>
The list of symbols.
Applies to
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.
protected internal void Accept(TSymbol symbol);
member this.Accept : 'Symbol -> unit
Protected Friend Sub Accept (symbol As TSymbol)
Parameters
- symbol
- TSymbol
The symbol to accept.