RegistrationAttribute.Unregister Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Removes registration information about a VSPackage when called by an external registration tool such as regpkg.exe. For more information, see Registering VSPackages. Any class deriving from the RegistrationAttribute class must implement this method.
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
'Declaración
Public MustOverride Sub Unregister ( _
context As RegistrationAttribute..::..RegistrationContext _
)
'Uso
Dim instance As RegistrationAttribute
Dim context As RegistrationAttribute..::..RegistrationContext
instance.Unregister(context)
public abstract void Unregister(
RegistrationAttribute..::..RegistrationContext context
)
public:
virtual void Unregister(
RegistrationAttribute..::..RegistrationContext^ context
) abstract
abstract Unregister :
context:RegistrationAttribute..::..RegistrationContext -> unit
public abstract function Unregister(
context : RegistrationAttribute..::..RegistrationContext
)
Parameters
- context
Type: Microsoft.VisualStudio.Shell.RegistrationAttribute.RegistrationContext
A registration context provided by an external registration tool. The context can be used to remove 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.
.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