Ejemplo n.º 1
0
 /// <summary>Adds a new <c>&lt;StudentAddress&gt;</c> child element.</summary>
 /// <param name="val">A StudentAddress object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "This element has the student's address information.  "</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0r1</para>
 /// </remarks>
 public void AddStudentAddress( StudentAddress val )
 {
     AddChild( StudentDTD.STUDENTPERSONAL_STUDENTADDRESS, val );
 }
Ejemplo n.º 2
0
 /// <summary>Adds a new <c>&lt;StudentAddress&gt;</c> child element.</summary>
 /// <param name="val">A StudentAddress object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "This element has the student's address information.  "</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0r1</para>
 /// </remarks>
 public void AddStudentAddress(StudentAddress val)
 {
     AddChild(StudentDTD.STUDENTPERSONAL_STUDENTADDRESS, val);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Sets all StudentAddress object instances. All existing 
 /// <c>StudentAddress</c> instances 
 /// are removed and replaced with this list. Calling this method with the 
 /// parameter value set to null removes all <c>StudentAddresses</c>.
 /// </summary>
 /// <remarks>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0r1</para>
 /// </remarks>
 public void SetStudentAddresses( StudentAddress[] items)
 {
     SetChildren( StudentDTD.STUDENTPERSONAL_STUDENTADDRESS, items );
 }