WordSegmentsTokenizingHandler 代理人

定義

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

IIterable<WordSegment>

IEnumerable<WordSegment>

WordsSegmenter.Tokenize に提供されるパラメーター startIndex の前にある、選択可能な単語を逆の順序で格納します。

words

IIterable<WordSegment>

IEnumerable<WordSegment>

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 で導入)

注釈

ハンドラーに渡される 1 つの反復子は、パラメーター startIndex ( Tokenize に渡される) の前に発生した、指定されたテキスト内のすべての単語を逆の順序で反復処理します。 もう 1 つの反復子は、 startIndex を含む、または後に続く、指定されたテキスト内のすべての単語を反復処理します。

: Tokenize に "this is a simple example" を指定し、"simple" という単語内で startIndex を指定すると、 先行するWords は"、"is"、"this"、および words が "simple ", "example" という単語を反復処理します。

上記のWords単語 は、ハンドラーの有効期間中にのみ有効です。

適用対象

こちらもご覧ください