AutoCompleteEditHandler Constructors

Definition

Overloads

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

Initializes a new instance of the AutoCompleteEditHandler class.

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

Initializes a new instance of the AutoCompleteEditHandler class.

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

Initializes a new instance of the AutoCompleteEditHandler class.

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

Parameters

tokenizer
Func<String,IEnumerable<ISymbol>>

The tokenizer.

Applies to

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

Initializes a new instance of the AutoCompleteEditHandler class.

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

Parameters

tokenizer
Func<String,IEnumerable<ISymbol>>

The tokenizer.

accepted
AcceptedCharacters

The accepted characters.

Applies to