ProvideExtenderAttribute Constructor (String^, String^, String^)

 

Initializes a new instance of ProvideExtenderAttribute for the specified extender.

Namespace:   Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)

public:
ProvideExtenderAttribute(
	String^ extendeeCatId,
	String^ extenderGuid,
	String^ extenderName
)

Parameters

extendeeCatId
Type: System::String^

The CATID of the element to be extended.

extenderGuid
Type: System::String^

The GUID of the extender.

extenderName
Type: System::String^

The name of the extender.

The C# language automatically appends the word "Attribute" to the name of any attribute class. In C# code, refer to this attribute as ProvideExtender.

using MSVSIP = Microsoft.VisualStudio.Shell;
...
[MSVSIP.ProvideExtender("A2392464-7C22-11D3-BDCA-00C04F688E50", "7C7E655A-0FBD-43c8-BC2E-C83BB68BFFA2" , "StaticSolutionBrowserObjExtender")]
public class AutoExtenderPackage : MSVSIP.Package
...
Return to top
Show: