ProvideLanguageExtensionAttribute.Register Method
Puts the file extension and language service GUID into the registry.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Public Overrides Sub Register ( _
context As RegistrationAttribute.RegistrationContext _
)
public override void Register(
RegistrationAttribute.RegistrationContext context
)
public:
virtual void Register(
RegistrationAttribute::RegistrationContext^ context
) override
abstract Register :
context:RegistrationAttribute.RegistrationContext -> unit
override Register :
context:RegistrationAttribute.RegistrationContext -> unit
public override function Register(
context : RegistrationAttribute.RegistrationContext
)
Parameters
context
Type: Microsoft.VisualStudio.Shell.RegistrationAttribute.RegistrationContext[in] A RegistrationAttribute.RegistrationContext object used to create registry keys and to log progress.
Remarks
This method is called to create all of the necessary registry entries to associate a file extension with a language service. Typically, a program such as regpkg.exe reads a specified assembly and looks for all attributes that inherit from the RegistrationAttribute. Regpkg.exe then instantiates each attribute, supplying the appropriate parameters that were specified when the attribute was compiled. Finally, regpkg.exe calls Register method on the newly created object to cause all of the appropriate registry keys and entries to be created.
Note that this method is an override of and specific to the managed package framework (MPF) RegistrationAttribute class.
.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.