IVsRunningDocTableEvents2.OnAfterSave Method
Called after a document in the Running Document Table (RDT) is saved.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function OnAfterSave ( _
docCookie As UInteger _
) As Integer
int OnAfterSave(
uint docCookie
)
int OnAfterSave(
[InAttribute] unsigned int docCookie
)
abstract OnAfterSave :
docCookie:uint32 -> int
function OnAfterSave(
docCookie : uint
) : int
Parameters
docCookie
Type: UInt32[in] Abstract value representing the document whose attributes have been changed.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
If you want to know if your project or solution is currently closing after you receive an OnAfterSave notification, you need to monitor events on the IVsSolutionEvents3 interface. To do this:
Query the SVsSolution service to get an IVsSolution interface.
Obtain the IVsSolution2 interface from the IVsSolution interface
Next, call the AdviseSolutionEvents to pass in your implementation of the IVsSolutionEvents3.
COM Signature
From vsshell.idl:
HRESULT IVsRunningDocTableEvents2::OnAfterSave(
[in] VSCOOKIE docCookie
);
.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.