IVsObjectList.GetCapabilities Method
Returns an object list's capabilities.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetCapabilities ( _
<OutAttribute> ByRef pCapabilities As UInteger _
) As Integer
int GetCapabilities(
out uint pCapabilities
)
int GetCapabilities(
[OutAttribute] unsigned int% pCapabilities
)
abstract GetCapabilities :
pCapabilities:uint32 byref -> int
function GetCapabilities(
pCapabilities : uint
) : int
Parameters
pCapabilities
Type: UInt32%[out] Specifies an object list's capabilities. Values are taken from the _LIB_LISTCAPABILITIES enumeration.
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 IVsObjectList::GetCapabilities(
[out] LIB_LISTCAPABILITIES *pCapabilities
);
The environment's object manager calls this method to retrieve the enumerated capabilities of the object list on which the IVsObjectList interface is implemented. For the list of capabilities see _LIB_LISTCAPABILITIES.
.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.