Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Return the user context (IVsUserContext interface) of an object.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetObjectContext ( _
punk As Object, _
<OutAttribute> ByRef ppctx As IVsUserContext _
) As Integer
int GetObjectContext(
Object punk,
out IVsUserContext ppctx
)
int GetObjectContext(
[InAttribute] Object^ punk,
[OutAttribute] IVsUserContext^% ppctx
)
abstract GetObjectContext :
punk:Object *
ppctx:IVsUserContext byref -> int
function GetObjectContext(
punk : Object,
ppctx : IVsUserContext
) : int
Parameters
punk
Type: Object[in] Pointer to the IUnknown interface of the object.
ppctx
Type: Microsoft.VisualStudio.Shell.Interop.IVsUserContext%[out] Pointer to the user context (IVsUserContext) of the object.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From context.idl:
[C++]
HRESULT IVsProvideUserContextForObject::GetObjectContext(
[in] IUnknown * punk,
[out, retval] IVsUserContext ** ppctx
);
.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.