IVsUserData::GetData Method (Guid, Object^)
Visual Studio 2015
Returns user data from a buffer.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Parameters
- riidKey
-
Type:
System::Guid
[in] Unique identifier of the data.
- pvtData
-
Type:
System::Object^
[out] Pointer to a VARIANT containing the user data.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsUserData::GetData(
[in] REFGUID riidKey,
[out] VARIANT *pvtData
);
If you want to retain the contents of the variant, then copy the data to the cache.
Show: