NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISymbolDocumentWriter.SetSource

Stores the raw source for a document into the symbol store.

[Visual Basic]
Sub SetSource( _
   ByVal source() As Byte _
)
[C#]
void SetSource(
   byte[] source
);
[C++]
void SetSource(
   unsigned char* source[]
) = 0;
[JScript]
function SetSource(
   source : Byte[]
);

Parameters

source
The document source represented as unsigned bytes.

Remarks

An array of unsigned bytes is used instead of character data to accommodate a wider variety of sources.

See Also

ISymbolDocumentWriter Interface | ISymbolDocumentWriter Members | System.Diagnostics.SymbolStore Namespace