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!

ISymbolReader.GetDocument

Gets a document specified by the language, vendor, and type.

[Visual Basic]
Function GetDocument( _
   ByVal url As String, _
   ByVal language As Guid, _
   ByVal languageVendor As Guid, _
   ByVal documentType As Guid _
) As ISymbolDocument
[C#]
ISymbolDocument GetDocument(
   string url,
   Guid language,
   Guid languageVendor,
   Guid documentType
);
[C++]
ISymbolDocument* GetDocument(
   String* url,
   Guid language,
   Guid languageVendor,
   Guid documentType
) = 0;
[JScript]
function GetDocument(
   url : String,
   language : Guid,
   languageVendor : Guid,
   documentType : Guid
) : ISymbolDocument;

Parameters

url
The URL that identifies the document.
language
The document language. This argument can be specified as NULL.
languageVendor
The identity of the vendor for the document language. This argument can be specified as NULL.
documentType
The type of the document. This argument can be specified as NULL.

Return Value

The specified document.

See Also

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