IEnumTargetFrameworks::Next Method (UInt32, array<UInt32>^, UInt32)
Visual Studio 2015
Retrieves supported target frameworks.
Assembly: Microsoft.VisualStudio.Shell.Interop.9.0 (in Microsoft.VisualStudio.Shell.Interop.9.0.dll)
int Next( unsigned int celt, array<unsigned int>^ rgFrameworks, [OutAttribute] unsigned int% pceltFetched )
Parameters
- celt
-
Type:
System::UInt32
The number of target framework versions.
- rgFrameworks
-
Type:
array<System::UInt32>^
A reference to the returned target frameworks.
- pceltFetched
-
Type:
System::UInt32
The number of target frameworks returned.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From compsvcspkg90.idl:
HRESULT Next(
[in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)] BSTR * rgFrameworks,
[out] ULONG *pceltFetched
);
Show: