WordSegmentsTokenizingHandler 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义提供给 WordsSegmenter.Tokenize 的函数的签名。
public delegate void WordSegmentsTokenizingHandler(IIterable<WordSegment ^> ^ precedingWords, IIterable<WordSegment ^> ^ words);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(2782749527, 48938, 19535, 163, 31, 41, 231, 28, 111, 139, 53)]
class WordSegmentsTokenizingHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(2782749527, 48938, 19535, 163, 31, 41, 231, 28, 111, 139, 53)]
public delegate void WordSegmentsTokenizingHandler(IEnumerable<WordSegment> precedingWords, IEnumerable<WordSegment> words);
var wordSegmentsTokenizingHandlerHandler = function(precedingWords, words){
/* Your code */
}
Public Delegate Sub WordSegmentsTokenizingHandler(precedingWords As IEnumerable(Of WordSegment), words As IEnumerable(Of WordSegment))
参数
- precedingWords
包含提供给 WordsSegmenter.Tokenize 的参数 startIndex 之前的可选字词(按相反顺序排列)。
- words
包含或遵循提供给 WordsSegmenter.Tokenize 的参数 startIndex 的可选字词。
- 属性
Windows 要求
设备系列 |
Windows 10 (在 10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)
|
注解
传递给处理程序的一个迭代器以相反的顺序循环访问所提供文本中出现的所有单词,这些单词在参数 startIndex (传递给 Tokenize) 。 另一个迭代器循环访问所提供的文本中包含或跟随 startIndex 的所有字词。
示例:如果向 Tokenize 提供“这是一个简单的示例”,并在单词“simple”内提供 startIndex , 则前面的Words 将循环访问单词“a”、“is”、“this”,并且 单词 循环访问单词“simple”,“example”。
precedingWords 和 words 仅在处理程序的生存期内有效。