IVsOutputGroup2.get_Outputs Method

Returns an array of pointers to IVsOutput2 interfaces providing access to a configuration's output items.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

'Declaration
Function get_Outputs ( _
    celt As UInteger, _
    <OutAttribute> rgpcfg As IVsOutput2(), _
    <OutAttribute> pcActual As UInteger() _
) As Integer
int get_Outputs(
    uint celt,
    IVsOutput2[] rgpcfg,
    uint[] pcActual
)
int get_Outputs(
    [InAttribute] unsigned int celt, 
    [OutAttribute] array<IVsOutput2^>^ rgpcfg, 
    [OutAttribute] array<unsigned int>^ pcActual
)
abstract get_Outputs : 
        celt:uint32 * 
        rgpcfg:IVsOutput2[] byref * 
        pcActual:uint32[] byref -> int 
function get_Outputs(
    celt : uint, 
    rgpcfg : IVsOutput2[], 
    pcActual : uint[]
) : int

Parameters

  • celt
    Type: System.UInt32
    [in] Number of output items requested.
  • pcActual
    Type: array<System.UInt32[]
    [out, optional] Pointer to the number of actual outputs.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Implements

IVsOutputGroup.get_Outputs(UInt32, array<IVsOutput2[], array<UInt32[])

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsOutputGroup2::get_Outputs(
   [in] ULONG celt, 
   [in, out, size_is(celt)] IVsOutput2 * rgpcfg[], 
   [out, optional] ULONG *pcActual
);

This method returns a list of output items or zero if there are no output items. Not all files go out on every configuration and a group's files could all be configuration dependent.

.NET Framework Security

See Also

Reference

IVsOutputGroup2 Interface

Microsoft.VisualStudio.Shell.Interop Namespace