Share via


HtmlMarkupParser.SkipToAndParseCode Method

Definition

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.

Applies to