ILocalRegistry4.RegisterClassObject Method

Loads a class factory and registers it with COM.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.9.0 (in Microsoft.VisualStudio.Shell.Interop.9.0.dll)

Syntax

‘선언
Function RegisterClassObject ( _
    ByRef rclsid As Guid, _
    <OutAttribute> ByRef pdwCookie As UInteger _
) As Integer
‘사용 방법
Dim instance As ILocalRegistry4
Dim rclsid As Guid
Dim pdwCookie As UInteger
Dim returnValue As Integer

returnValue = instance.RegisterClassObject(rclsid, _
    pdwCookie)
int RegisterClassObject(
    ref Guid rclsid,
    out uint pdwCookie
)
int RegisterClassObject(
    [InAttribute] Guid% rclsid, 
    [OutAttribute] unsigned int% pdwCookie
)
abstract RegisterClassObject : 
        rclsid:Guid byref * 
        pdwCookie:uint32 byref -> int 
function RegisterClassObject(
    rclsid : Guid, 
    pdwCookie : uint
) : int

Parameters

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

This method can be called from any thread, but the CLSID will be registered only for the calling apartment.

COM Signature

From vsshell90.idl:

HRESULT RegisterClassObject(
   [in] REFCLSID rclsid,
   [out] DWORD* pdwCookie
);

.NET Framework Security

See Also

Reference

ILocalRegistry4 Interface

ILocalRegistry4 Members

Microsoft.VisualStudio.Shell.Interop Namespace