IVsProvideUserContext.GetUserContext Method
Informs the environment where the selection's context is located.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetUserContext ( _
<OutAttribute> ByRef ppctx As IVsUserContext _
) As Integer
int GetUserContext(
out IVsUserContext ppctx
)
int GetUserContext(
[OutAttribute] IVsUserContext^% ppctx
)
abstract GetUserContext :
ppctx:IVsUserContext byref -> int
function GetUserContext(
ppctx : IVsUserContext
) : int
Parameters
ppctx
Type: Microsoft.VisualStudio.Shell.Interop.IVsUserContext%[out] Pointer to the IVsUserContext interface, representing the context bag for the selection container.
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 IVsProvideUserContext::GetUserContext(
[out, retval] IVsUserContext ** ppctx
);
If this method is called, create a context bag, fill it with the appropriate attributes and keywords, and set the ppctx pointer to inform the environment of where the context is. The context bag is then associated with an ISelectionContainer object. For information about how to create a context bag, see IVsMonitorUserContext. For information about how to manage a context bag, see IVsUserContext.
.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.