Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Called after application of the first lock of the specified type to a document in the Running Document Table (RDT).
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function OnAfterFirstDocumentLock ( _
docCookie As UInteger, _
dwRDTLockType As UInteger, _
dwReadLocksRemaining As UInteger, _
dwEditLocksRemaining As UInteger _
) As Integer
'Usage
Dim instance As IVsRunningDocTableEvents3
Dim docCookie As UInteger
Dim dwRDTLockType As UInteger
Dim dwReadLocksRemaining As UInteger
Dim dwEditLocksRemaining As UInteger
Dim returnValue As Integer
returnValue = instance.OnAfterFirstDocumentLock(docCookie, _
dwRDTLockType, dwReadLocksRemaining, _
dwEditLocksRemaining)
int OnAfterFirstDocumentLock(
uint docCookie,
uint dwRDTLockType,
uint dwReadLocksRemaining,
uint dwEditLocksRemaining
)
int OnAfterFirstDocumentLock(
[InAttribute] unsigned int docCookie,
[InAttribute] unsigned int dwRDTLockType,
[InAttribute] unsigned int dwReadLocksRemaining,
[InAttribute] unsigned int dwEditLocksRemaining
)
abstract OnAfterFirstDocumentLock :
docCookie:uint32 *
dwRDTLockType:uint32 *
dwReadLocksRemaining:uint32 *
dwEditLocksRemaining:uint32 -> int
function OnAfterFirstDocumentLock(
docCookie : uint,
dwRDTLockType : uint,
dwReadLocksRemaining : uint,
dwEditLocksRemaining : uint
) : int
Parameters
- docCookie
Type: System.UInt32
[in] Abstract value representing the document whose attributes have been changed.
- dwRDTLockType
Type: System.UInt32
[in] The document lock type. Values are taken from the _VSRDTFLAGS enumeration.
- dwReadLocksRemaining
Type: System.UInt32
[in] Specifies the number of remaining read locks.
- dwEditLocksRemaining
Type: System.UInt32
[in] Specifies the number of remaining edit locks.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsRunningDocTableEvents2.OnAfterFirstDocumentLock(UInt32, UInt32, UInt32, UInt32)
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsRunningDocTableEvents3::OnAfterFirstDocumentLock(
[in] VSCOOKIE docCookie,
[in] VSRDTFLAGS dwRDTLockType,
[in] DWORD dwReadLocksRemaining,
[in] DWORD dwEditLocksRemaining
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
IVsRunningDocTableEvents3 Interface
IVsRunningDocTableEvents3 Members