IIndexableContent.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 = iIndexableContent.stream;
iIndexableContent.stream = iRandomAccessStream;
Public Property Stream As IRandomAccessStream

Property Value

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

Applies to

See also