AutoCompleteEditHandler 构造函数

定义

重载

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

初始化 AutoCompleteEditHandler 类的新实例。

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)))

参数

tokenizer
Func<String,IEnumerable<ISymbol>>

标记器。

适用于

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

初始化 AutoCompleteEditHandler 类的新实例。

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)

参数

tokenizer
Func<String,IEnumerable<ISymbol>>

标记器。

accepted
AcceptedCharacters

接受的字符。

适用于