Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Initializes a new instance of ProvideExtenderAttribute for the specified extender.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
Public Sub New ( _
extendeeCatId As String, _
extenderGuid As String, _
extenderName As String _
)
public ProvideExtenderAttribute(
string extendeeCatId,
string extenderGuid,
string extenderName
)
public:
ProvideExtenderAttribute(
String^ extendeeCatId,
String^ extenderGuid,
String^ extenderName
)
new :
extendeeCatId:string *
extenderGuid:string *
extenderName:string -> ProvideExtenderAttribute
public function ProvideExtenderAttribute(
extendeeCatId : String,
extenderGuid : String,
extenderName : String
)
Parameters
extendeeCatId
Type: System.StringThe CATID of the element to be extended.
extenderGuid
Type: System.StringThe GUID of the extender.
extenderName
Type: System.StringThe name of the extender.
Remarks
The C# language automatically appends the word "Attribute" to the name of any attribute class. In C# code, refer to this attribute as ProvideExtender.
Examples
using MSVSIP = Microsoft.VisualStudio.Shell;
...
[MSVSIP.ProvideExtender("A2392464-7C22-11D3-BDCA-00C04F688E50", "7C7E655A-0FBD-43c8-BC2E-C83BB68BFFA2" , "StaticSolutionBrowserObjExtender")]
public class AutoExtenderPackage : MSVSIP.Package
...
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.