IPersistXMLFragment.IsFragmentDirty Method (UInt32, Int32)

 

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)

abstract IsFragmentDirty : 
        storage:uint32 *
        pfDirty:int byref -> int

Parameters

storage
Type: System.UInt32

[in] Storage type of the file in which the XML is persisted. Values are taken from _PersistStorageType enumeration.

pfDirty
Type: System.Int32

[out] true if the XML fragment changed.

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell80.idl:

HRESULT IPersistXMLFragment::IsFragmentDirty(
   [in] PersistStorageType storage,
   [out] BOOL *pfDirty
);

 

Return to top
Show: