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.IntPtrThe 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
- 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.
See Also
Reference
Microsoft.VisualStudio.Data.Services.SupportEntities.Interop Namespace