IVsObjectManager2.RegisterSimpleLibrary Method
Registers a managed code symbol library with the Visual Studio object manager.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function RegisterSimpleLibrary ( _
pLib As IVsSimpleLibrary2, _
<OutAttribute> ByRef pdwCookie As UInteger _
) As Integer
int RegisterSimpleLibrary(
IVsSimpleLibrary2 pLib,
out uint pdwCookie
)
int RegisterSimpleLibrary(
[InAttribute] IVsSimpleLibrary2^ pLib,
[OutAttribute] unsigned int% pdwCookie
)
abstract RegisterSimpleLibrary :
pLib:IVsSimpleLibrary2 *
pdwCookie:uint32 byref -> int
function RegisterSimpleLibrary(
pLib : IVsSimpleLibrary2,
pdwCookie : uint
) : int
Parameters
pLib
Type: Microsoft.VisualStudio.Shell.Interop.IVsSimpleLibrary2[in] The IVsSimpleLibrary2 that represents a managed code library.
pdwCookie
Type: UInt32%[out]The cookie that identifies the registered library.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT RegisterSimpleLibrary(
[in] IVsSimpleLibrary2 * pLib,
[out] VSCOOKIE* pdwCookie
);
.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.