RunningDocumentTable.FindDocument Method (String, UInt32%)

Gets a cookie from the Running Document Table (RDT) that represents the document specified by the given path.

This API is not CLS-compliant. 

Namespace:  Microsoft.VisualStudio.Shell
Assemblies:   Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
  Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)

Syntax

‘선언
<CLSCompliantAttribute(False)> _
Public Function FindDocument ( _
    moniker As String, _
    <OutAttribute> ByRef docCookie As UInteger _
) As Object
‘사용 방법
Dim instance As RunningDocumentTable
Dim moniker As String
Dim docCookie As UInteger
Dim returnValue As Object

returnValue = instance.FindDocument(moniker, _
    docCookie)
[CLSCompliantAttribute(false)]
public Object FindDocument(
    string moniker,
    out uint docCookie
)
[CLSCompliantAttribute(false)]
public:
Object^ FindDocument(
    String^ moniker, 
    [OutAttribute] unsigned int% docCookie
)
[<CLSCompliantAttribute(false)>]
member FindDocument : 
        moniker:string * 
        docCookie:uint32 byref -> Object 
public function FindDocument(
    moniker : String, 
    docCookie : uint
) : Object

Parameters

  • docCookie
    Type: System.UInt32%
    [out] Returns the unique value that represents the requested document in the RDT.

Return Value

Type: System.Object
An object that can be cast to an appropriate interface to access the document (see Remarks for details), or nulla null reference (Nothing in Visual Basic) if the document is not registered with Visual Studio.

Remarks

The cookie can be used in a call to the GetRunningDocumentContents method.

The object returned can typically be cast to the IVsPersistDocData interface or the IVsDocDataFileChangeControl interface.

.NET Framework Security

See Also

Reference

RunningDocumentTable Class

RunningDocumentTable Members

FindDocument Overload

Microsoft.VisualStudio.Shell Namespace