IndexableContent.Stream 属性

定义

获取或设置提供全文内容的 Stream。 可以使用 ContentIndexer 类更改索引中项的实际表示形式。

public:
 property IRandomAccessStream ^ Stream { IRandomAccessStream ^ get(); void set(IRandomAccessStream ^ value); };
IRandomAccessStream Stream();

void Stream(IRandomAccessStream value);
public IRandomAccessStream Stream { get; set; }
var iRandomAccessStream = indexableContent.stream;
indexableContent.stream = iRandomAccessStream;
Public Property Stream As IRandomAccessStream

属性值

用于为项提供全文内容的流。

实现

注解

当内容属性由文件或其他类型的流提供支持时分配 Stream 属性。 这对于提供全文内容特别有用。

适用于

另请参阅