IVsEnumNavInfoNodes.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 IVsEnumNavInfoNodes _
) As Integer
int Clone(
out IVsEnumNavInfoNodes ppEnum
)
int Clone(
[OutAttribute] IVsEnumNavInfoNodes^% ppEnum
)
abstract Clone :
ppEnum:IVsEnumNavInfoNodes byref -> int
function Clone(
ppEnum : IVsEnumNavInfoNodes
) : int
Parameters
ppEnum
Type: Microsoft.VisualStudio.Shell.Interop.IVsEnumNavInfoNodes%[out] The IVsEnumNavInfoNodes 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: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsEnumNavInfoNodes::Clone(
[out] IVsEnumNavInfoNodes **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.