RegistrationAttribute.Register Method
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
Assembly: Microsoft.VisualStudio.Shell.Immutable.10.0 (in Microsoft.VisualStudio.Shell.Immutable.10.0.dll)
Syntax
‘선언
Public MustOverride Sub Register ( _
context As RegistrationAttribute.RegistrationContext _
)
public abstract void Register(
RegistrationAttribute.RegistrationContext context
)
Parameters
- context
Type: Microsoft.VisualStudio.Shell.RegistrationAttribute.RegistrationContext
A registration context provided by an external registration tool. The context can be used to create registry keys, log registration activity, and obtain information about the component being registered.
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.
This method is called both for registration and unregistration. The difference is that unregistering reverses the changes applied to it.
.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.
See Also
Reference
Microsoft.VisualStudio.Shell Namespace