Share via


SpanEditHandler Constructors

Definition

Overloads

SpanEditHandler(Func<String,IEnumerable<ISymbol>>)

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 SpanEditHandler class.

SpanEditHandler(Func<String,IEnumerable<ISymbol>>, AcceptedCharacters)

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 SpanEditHandler class.

SpanEditHandler(Func<String,IEnumerable<ISymbol>>)

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 SpanEditHandler class.

public SpanEditHandler (Func<string,System.Collections.Generic.IEnumerable<System.Web.Razor.Tokenizer.Symbols.ISymbol>> tokenizer);
new System.Web.Razor.Editor.SpanEditHandler : Func<string, seq<System.Web.Razor.Tokenizer.Symbols.ISymbol>> -> System.Web.Razor.Editor.SpanEditHandler
Public Sub New (tokenizer As Func(Of String, IEnumerable(Of ISymbol)))

Parameters

tokenizer
Func<String,IEnumerable<ISymbol>>

The method used to parse string into tokens.

Applies to

SpanEditHandler(Func<String,IEnumerable<ISymbol>>, AcceptedCharacters)

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 SpanEditHandler class.

public SpanEditHandler (Func<string,System.Collections.Generic.IEnumerable<System.Web.Razor.Tokenizer.Symbols.ISymbol>> tokenizer, System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters accepted);
new System.Web.Razor.Editor.SpanEditHandler : Func<string, seq<System.Web.Razor.Tokenizer.Symbols.ISymbol>> * System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters -> System.Web.Razor.Editor.SpanEditHandler
Public Sub New (tokenizer As Func(Of String, IEnumerable(Of ISymbol)), accepted As AcceptedCharacters)

Parameters

tokenizer
Func<String,IEnumerable<ISymbol>>

The method used to parse string into tokens.

accepted
AcceptedCharacters

One of the values of the AcceptedCharacters enumeration.

Applies to