IPersistXMLFragment.IsFragmentDirty Method
Determines whether an XML fragment has changed since it was last saved to its current file.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function IsFragmentDirty ( _
storage As UInteger, _
<OutAttribute> ByRef pfDirty As Integer _
) As Integer
int IsFragmentDirty(
uint storage,
out int pfDirty
)
int IsFragmentDirty(
[InAttribute] unsigned int storage,
[OutAttribute] int% pfDirty
)
abstract IsFragmentDirty :
storage:uint32 *
pfDirty:int byref -> int
function IsFragmentDirty(
storage : uint,
pfDirty : int
) : int
Parameters
storage
Type: UInt32[in] Storage type of the file in which the XML is persisted. Values are taken from _PersistStorageType enumeration.
pfDirty
Type: Int32%[out] true if the XML fragment changed.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IPersistXMLFragment::IsFragmentDirty(
[in] PersistStorageType storage,
[out] BOOL *pfDirty
);
.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.