IVsUIShell.UpdateDocDataIsDirtyFeedback Method
Makes it possible for a document data object to synchronously inform the environment when their document must be changed.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function UpdateDocDataIsDirtyFeedback ( _
docCookie As UInteger, _
fDirty As Integer _
) As Integer
int UpdateDocDataIsDirtyFeedback(
uint docCookie,
int fDirty
)
int UpdateDocDataIsDirtyFeedback(
[InAttribute] unsigned int docCookie,
[InAttribute] int fDirty
)
abstract UpdateDocDataIsDirtyFeedback :
docCookie:uint32 *
fDirty:int -> int
function UpdateDocDataIsDirtyFeedback(
docCookie : uint,
fDirty : int
) : int
Parameters
docCookie
Type: UInt32[in] An abstract value representing the document in the Running Document Table.
fDirty
Type: Int32The value of this parameter is ignored. The document's IsItemDirty method is called to determine the document's dirty state.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsUIShell::UpdateDocDataIsDirtyFeedback(
[in] VSCOOKIE docCookie,
[in] BOOL fDirty
);
This method makes the environment add the "*" to the window title. The "*" is part of the document window caption that is added automatically by the environment. Document data objects should call QueryService for SID_SVsUIShell to access this method.
.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.