共用方式為


RegisterExtenderAttribute Constructor

This constructor creates a new RegisterExtenderAttribute object.

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

Syntax

'宣告
Public Sub New ( _
    extendeeCatId As String, _
    extenderGuid As String, _
    extenderName As String _
)
public RegisterExtenderAttribute(
    string extendeeCatId,
    string extenderGuid,
    string extenderName
)

Parameters

Remarks

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

Examples

The following C# code applies the RegisterExtender attribute to a VSPackage named MyVSPackage.

using Microsoft.VisualStudio.VSIP;
using MSVSIP = Microsoft.VisualStudio.VSIP;c
[MSVSIP.Helper.RegisterExtender("A2392464-7C22-11D3-BDCA-00C04F688E50", "7C7E655A-0FBD-43c8-BC2E-C83BB68BFFA2" , "StaticSolutionBrowserObjExtender")]
public class AutoExtenderPackage : MSVSIP.Helper.Package {}

.NET Framework Security

See Also

Reference

RegisterExtenderAttribute Class

Microsoft.VisualStudio.Shell Namespace