Add zero or more child records to this compound record.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Sub addChildren( _ 
   ByVal ParamArray children As NetricsCompoundRecord() _ 
)
C#
public void addChildren(
   params NetricsCompoundRecord[] children
)
C++
public:
 void addChildren(
   ... array<NetricsCompoundRecord>^ children
) sealed 
J#
public void addChildren(
   NetricsCompoundRecord[] children
)
JScript
public  function addChildren(
   ParamArrayAttribute children : NetricsCompoundRecord[]
)

Parameters

children
the child records to be added.

Remarks

This adds zero or more child records to this compound record. The child records must be children of this record (i.e. it's parent record key must be the key of this record.)

A particular child record for a particular table can appear only once. If a child with this key already exists for the given table it is replaced.

See Also