IVsEnumLibraries2.Clone Method
Creates another enumerator that contains the same enumeration state as the current one.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function Clone ( _
<OutAttribute> ByRef ppEnum As IVsEnumLibraries2 _
) As Integer
int Clone(
out IVsEnumLibraries2 ppEnum
)
int Clone(
[OutAttribute] IVsEnumLibraries2^% ppEnum
)
abstract Clone :
ppEnum:IVsEnumLibraries2 byref -> int
function Clone(
ppEnum : IVsEnumLibraries2
) : int
Parameters
ppEnum
Type: Microsoft.VisualStudio.Shell.Interop.IVsEnumLibraries2%[out] The IVsEnumLibraries2 that represents a new cloned enumerator set to the same state as the current enumerator.
If the method is unsuccessful, the value of ppEnum is undefined.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsEnumLibraries2::Clone(
[out] IVsEnumLibraries2 **ppenum
);
.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.