/// <summary>Adds a new <c><Contact></c> child element.</summary> /// <param name="val">A SLContact object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Typically used to provide the state information about a student's parents and legal guardians."</para> /// <para>Version: 2.5</para> /// <para>Since: 1.5r1</para> /// </remarks> public void AddContact( SLContact val ) { AddChild( ReportingDTD.STUDENTLOCATOR_CONTACT, val ); }
/// <summary> /// Sets all SLContact object instances. All existing /// <c>SLContact</c> instances /// are removed and replaced with this list. Calling this method with the /// parameter value set to null removes all <c>SLContacts</c>. /// </summary> /// <remarks> /// <para>Version: 2.5</para> /// <para>Since: 1.5r1</para> /// </remarks> public void SetContacts( SLContact[] items) { SetChildren( ReportingDTD.STUDENTLOCATOR_CONTACT, items ); }
/// <summary>Adds a new <c><Contact></c> child element.</summary> /// <param name="val">A SLContact object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Typically used to provide the state information about a student's parents and legal guardians."</para> /// <para>Version: 2.6</para> /// <para>Since: 1.5r1</para> /// </remarks> public void AddContact(SLContact val) { AddChild(ReportingDTD.STUDENTLOCATOR_CONTACT, val); }