Return child components of the leaf OID.

Namespace:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.2.0 (0.5.2.0)

Syntax

C#
public static int[] GetChildIdentifiers(
	Oid root,
	Oid leaf
)
Visual Basic (Declaration)
Public Shared Function GetChildIdentifiers ( _
	root As Oid, _
	leaf As Oid _
) As Integer()
Visual C++
public:
static array<int>^ GetChildIdentifiers(
	Oid^ root, 
	Oid^ leaf
)

Parameters

root
Type: SnmpSharpNet..::.Oid
Root Oid
leaf
Type: SnmpSharpNet..::.Oid
Leaf Oid

Return Value

Returns int array of child OIDs, if there was an error or no child IDs are present, returns null.

See Also