IVsRunningDocTableEvents2.OnBeforeLastDocumentUnlock Method
Called before releasing the last lock of the specified type on the specified document in the Running Document Table (RDT).
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
‘선언
Function OnBeforeLastDocumentUnlock ( _
docCookie As UInteger, _
dwRDTLockType As UInteger, _
dwReadLocksRemaining As UInteger, _
dwEditLocksRemaining As UInteger _
) As Integer
‘사용 방법
Dim instance As IVsRunningDocTableEvents2
Dim docCookie As UInteger
Dim dwRDTLockType As UInteger
Dim dwReadLocksRemaining As UInteger
Dim dwEditLocksRemaining As UInteger
Dim returnValue As Integer
returnValue = instance.OnBeforeLastDocumentUnlock(docCookie, _
dwRDTLockType, dwReadLocksRemaining, _
dwEditLocksRemaining)
int OnBeforeLastDocumentUnlock(
uint docCookie,
uint dwRDTLockType,
uint dwReadLocksRemaining,
uint dwEditLocksRemaining
)
int OnBeforeLastDocumentUnlock(
[InAttribute] unsigned int docCookie,
[InAttribute] unsigned int dwRDTLockType,
[InAttribute] unsigned int dwReadLocksRemaining,
[InAttribute] unsigned int dwEditLocksRemaining
)
function OnBeforeLastDocumentUnlock(
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] Type of lock being released. Values are taken from the _VSRDTFLAGS enumeration.
dwReadLocksRemaining
Type: System.UInt32[in] Specifies the number of read locks remaining.
dwEditLocksRemaining
Type: System.UInt32[in] Specifies the number of edit locks remaining.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsRunningDocTableEvents.OnBeforeLastDocumentUnlock(UInt32, UInt32, UInt32, UInt32)
Remarks
This method is called just before the last read lock is released on the document and just before the last edit lock is released.
COM Signature
From vsshell.idl:
HRESULT IVsRunningDocTableEvents2::OnBeforeLastDocumentUnlock(
[in] VSCOOKIE docCookie,
[in] VSRDTFLAGS dwRDTLockType,
[in] DWORD dwReadLocksRemaining,
[in] DWORD dwEditLocksRemaining
);
Permissions
- 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
IVsRunningDocTableEvents2 Interface