Share via


IDSRefConsumer.GetNextSiblingNode Method

Retrieves the identifier of the next sibling node of a specified node.

Namespace:  Microsoft.VisualStudio.Data.Services.SupportEntities.Interop
Assembly:  Microsoft.VisualStudio.Data.Services (in Microsoft.VisualStudio.Data.Services.dll)

Syntax

'Declaration
Function GetNextSiblingNode ( _
    drnidCurr As IntPtr _
) As IntPtr
IntPtr GetNextSiblingNode(
    IntPtr drnidCurr
)
IntPtr GetNextSiblingNode(
    IntPtr drnidCurr
)
abstract GetNextSiblingNode : 
        drnidCurr:IntPtr -> IntPtr
function GetNextSiblingNode(
    drnidCurr : IntPtr
) : IntPtr

Parameters

  • drnidCurr
    Type: System.IntPtr

    The DSREFNODEID of the child node of which the sibling node is to be retrieved.

Return Value

Type: System.IntPtr
NOERROR if successful; otherwise, an unspecified failure code.

Examples

C++

IDSRefConsumer* m_srpCurrentDSRef;
DSREFNODEID idLast;
DSREFNODEID idCur;
m_srpCurrentDSRef->GetNextSiblingNode(idLast, &idCur);

.NET Framework Security

See Also

Reference

IDSRefConsumer Interface

Microsoft.VisualStudio.Data.Services.SupportEntities.Interop Namespace