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 搭配 「this is a simple example」 和 startIndex 在 「simple」 一字內, 則 precedingWords 會逐一查看 「a」, 「is 」, 「this」, 和 words 逐一查看 「simple 」, 「example」 這兩個字。
precedingWords 和 words 只有在處理常式的存留期期間才有效。