HtmlMarkupParser.SkipToAndParseCode 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
SkipToAndParseCode(Func<HtmlSymbol,Boolean>) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified condition is meet. |
SkipToAndParseCode(HtmlSymbolType) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified HTML symbol type is encountered. |
SkipToAndParseCode(Func<HtmlSymbol,Boolean>)
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified condition is meet.
protected void SkipToAndParseCode(Func<System.Web.Razor.Tokenizer.Symbols.HtmlSymbol,bool> condition);
member this.SkipToAndParseCode : Func<System.Web.Razor.Tokenizer.Symbols.HtmlSymbol, bool> -> unit
Protected Sub SkipToAndParseCode (condition As Func(Of HtmlSymbol, Boolean))
Parameters
- condition
- Func<HtmlSymbol,Boolean>
A function delegate that defines the condition.
Applies to
SkipToAndParseCode(HtmlSymbolType)
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified HTML symbol type is encountered.
protected void SkipToAndParseCode(System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType type);
member this.SkipToAndParseCode : System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType -> unit
Protected Sub SkipToAndParseCode (type As HtmlSymbolType)
Parameters
- type
- HtmlSymbolType
The HTML symbol type.