ProvideLanguageCodeExpansionAttribute.Register Method

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

Creates all of the registry keys and entries as specified by the class constructor.

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

Syntax

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

instance.Register(context)
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

Remarks

This method is called to create the necessary registry keys and entries to specify support for code snippets. 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 the 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

See Also

Reference

ProvideLanguageCodeExpansionAttribute Class

ProvideLanguageCodeExpansionAttribute Members

Microsoft.VisualStudio.Shell Namespace