NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICodeGroup.AddChild

Adds a child code group to this code group.

[Visual Basic]
Sub AddChild( _
   ByVal group As ICodeGroup _
)
[C#]
void AddChild(
   ICodeGroup group
);
[C++]
void AddChild(
   ICodeGroup* group
) = 0;
[JScript]
function AddChild(
   group : ICodeGroup
);

Parameters

group
Code group to be added as child.

Exceptions

Exception Type Condition
ArgumentException if argument is not a code group (implements ICodeGroup).

Remarks

The added code group is order following existing child code groups.

See Also

ICodeGroup Interface | ICodeGroup Members | System.Security.Policy Namespace