RegistrationAttribute.Register Method

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Registers this VSPackage with a given context, when called by an external registration tool such as regpkg.exe. For more information, see Registering VSPackages.

Namespace:  Microsoft.VisualStudio.Shell
Assemblies:   Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
  Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
  Microsoft.VisualStudio.Shell.Immutable.10.0 (in Microsoft.VisualStudio.Shell.Immutable.10.0.dll)

Syntax

‘선언
Public MustOverride Sub Register ( _
    context As RegistrationAttribute..::..RegistrationContext _
)
‘사용 방법
Dim instance As RegistrationAttribute
Dim context As RegistrationAttribute..::..RegistrationContext

instance.Register(context)
public abstract void Register(
    RegistrationAttribute..::..RegistrationContext context
)
public:
virtual void Register(
    RegistrationAttribute..::..RegistrationContext^ context
) abstract
abstract Register : 
        context:RegistrationAttribute..::..RegistrationContext -> unit 
public abstract function Register(
    context : RegistrationAttribute..::..RegistrationContext
)

Parameters

Remarks

All classes that derive from the RegistrationAttribute class must implement this method.

The context contains the location where the registration information should be placed. It also contains such information as the type to be registered and path information.

.NET Framework Security

See Also

Reference

RegistrationAttribute Class

RegistrationAttribute Members

Microsoft.VisualStudio.Shell Namespace

Other Resources

VSPackage Registration

Managed VSPackage Registration Keys