ProvideExtenderAttribute クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この属性は、パッケージをエクステンダーとして登録します。 渡される GUID によって、拡張される内容が決まります。 パッケージの属性はパッケージの動作を制御しませんが、登録ツールで使用して適切な情報を Visual Studio に登録できます。
public ref class ProvideExtenderAttribute sealed : Microsoft::VisualStudio::Shell::RegistrationAttribute
public ref class ProvideExtenderAttribute sealed : Microsoft::VisualStudio::Shell::RegistrationAttribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=true, Inherited=true)]
public sealed class ProvideExtenderAttribute : Microsoft.VisualStudio.Shell.RegistrationAttribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=true, Inherited=true)>]
type ProvideExtenderAttribute = class
inherit RegistrationAttribute
Public NotInheritable Class ProvideExtenderAttribute
Inherits RegistrationAttribute
- 継承
- 属性
注釈
この属性は、Visual Studio でエクステンダー (を実装する IExtenderProviderオブジェクト) を提供します。 を使用 ProvideExtenderAttribute
するには、 から継承 Package するか、 を実装するクラスに配置します IVsPackage。
この属性クラスは、外部登録ツールのデータを提供するためにのみ使用されます。 VSPackage のランタイム動作には影響しません。
注意
C# では、任意の属性クラスの名前に "Attribute" という単語が自動的に追加されます。 C# コードでは、この属性を と ProvideExtender
参照します。
注意
Visual C# および Visual Basic プロジェクトの種類の GUID は、それぞれ {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} と {F184B08F-C81C-45F6-A57F-5ABD9991F28F} です。
呼び出すタイミング
VSPackage が静的エクステンダーを実装する場合に適用 ProvideExtenderAttribute
します。
レジストリ エントリ
によって次のレジストリ エントリが作成 ProvideExtenderAttribute
されます。
<VSROOT>\Extenders\{CATID}\EditorName\
<VSROOT>\Extenders\{CATID}\EditorName\@={ExtenderGuid}
サンプル
コンストラクター
ProvideExtenderAttribute(String, String, String) |
新しい ProvideExtenderAttribute を作成します。 |
プロパティ
ExtendeeCatId |
拡張される要素の CatID。 |
Extender |
エクステンダーの Guid。 |
ExtenderName |
エクステンダーの名前。 |
TypeId |
RegistrationAttribute 派生クラスが System.ComponentModel.TypeDescriptor.GetAttributes(...) と連携できるように、TypeID プロパティをオーバーライドします。このプロパティから派生した属性は、クラスに適用できるインスタンスをより適切に制御する必要がある場合にのみ、このプロパティをオーバーライドする必要があります。 (継承元 RegistrationAttribute) |
メソッド
GetPackageRegKeyPath(Guid) |
VSPackage のレジストリ パス (アプリケーションのレジストリ ルートに対する相対パス) を取得します。 (継承元 RegistrationAttribute) |
Register(RegistrationAttribute+RegistrationContext) |
指定されたコンテキストでこの属性を登録します。 コンテキストには、登録情報の配置先の場所が含まれます。 また、登録されている型やパス情報なども含まれます。 |
Unregister(RegistrationAttribute+RegistrationContext) |
このエクステンダー仕様の登録を解除します。 |