IndexableContent.Stream Property

Definition

Gets or sets a Stream that provides full-text content. Changes to the actual representation of the item in the index can be made using the ContentIndexer class.

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

Property Value

The stream used to provide the full-text content for the item.

Implements

Remarks

Assign the Stream property when the content properties are backed by a file or another kind of stream. This is particularly useful for providing full text content.

Applies to

See also