Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets a list of subcategories for the tasks of this task provider.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Syntax
'Declaration
Private Function SubcategoryList ( _
cbstr As UInteger, _
rgbstr As String(), _
<OutAttribute> ByRef cnt As UInteger _
) As Integer Implements IVsTaskProvider2.SubcategoryList
'Usage
Dim instance As TaskProvider
Dim cbstr As UInteger
Dim rgbstr As String()
Dim cnt As UInteger
Dim returnValue As Integer
returnValue = CType(instance, IVsTaskProvider2).SubcategoryList(cbstr, _
rgbstr, cnt)
int IVsTaskProvider2.SubcategoryList(
uint cbstr,
string[] rgbstr,
out uint cnt
)
private:
virtual int SubcategoryList(
unsigned int cbstr,
array<String^>^ rgbstr,
[OutAttribute] unsigned int% cnt
) sealed = IVsTaskProvider2::SubcategoryList
private abstract SubcategoryList :
cbstr:uint32 *
rgbstr:string[] *
cnt:uint32 byref -> int
private override SubcategoryList :
cbstr:uint32 *
rgbstr:string[] *
cnt:uint32 byref -> int
JScript does not support explicit interface implementations.
Parameters
- cbstr
Type: System.UInt32
The number of subcategories in rgbstr.
- rgbstr
Type: array<System.String[]
An array of subcategories
- cnt
Type: System.UInt32%
[out] The number of subcategories.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsTaskProvider2.SubcategoryList(UInt32, array<String[], UInt32%)
Remarks
This method calls SubcategoryList.
.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.