C# Class AsmHighlighter.RegisterExpressionEvaluatorAttribute

Inheritance: Microsoft.VisualStudio.Shell.RegistrationAttribute
Exibir arquivo Open project: Trass3r/AsmHighlighter

Public Methods

Method Description
Register ( Microsoft.VisualStudio.Shell.RegistrationAttribute context ) : void

Provides registration information about a VSPackage when called by an external registration tool such as regpkg.exe.

RegisterExpressionEvaluatorAttribute ( Type type, string LanguageGuid, string VendorGuid ) : System

CTor

Unregister ( Microsoft.VisualStudio.Shell.RegistrationAttribute context ) : void

Removes registration information about a VSPackage when called by an external registration tool such as regpkg.exe.

Method Details

Register() public method

Provides registration information about a VSPackage when called by an external registration tool such as regpkg.exe.
public Register ( Microsoft.VisualStudio.Shell.RegistrationAttribute context ) : void
context Microsoft.VisualStudio.Shell.RegistrationAttribute 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.
return void

RegisterExpressionEvaluatorAttribute() public method

CTor
is null
public RegisterExpressionEvaluatorAttribute ( Type type, string LanguageGuid, string VendorGuid ) : System
type System.Type Type to be registered as expression evaluator - must have and should implement .
LanguageGuid string String representing GUID of language to register evaluator for
VendorGuid string String represenring GUID of vendor of language to register evakluator for
return System

Unregister() public method

Removes registration information about a VSPackage when called by an external registration tool such as regpkg.exe.
public Unregister ( Microsoft.VisualStudio.Shell.RegistrationAttribute context ) : void
context Microsoft.VisualStudio.Shell.RegistrationAttribute 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.
return void