예제 #1
0
 ///<summary>Sets the value of the <c>&lt;ExitType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of exit for this enrollment.</param>
 ///<remarks>
 /// <para>This form of <c>setExitType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>ExitType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void SetExitType(ExitTypeCode Code)
 {
     RemoveChild(CommonDTD.STUDENTLEARELATIONSHIP_EXITTYPE);
     AddChild(CommonDTD.STUDENTLEARELATIONSHIP_EXITTYPE, new ExitType(Code));
 }
 ///<summary>Sets the value of the <c>&lt;ExitType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of exit for this enrollment.</param>
 ///<remarks>
 /// <para>This form of <c>setExitType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>ExitType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetExitType( ExitTypeCode Code )
 {
     RemoveChild( StudentDTD.STUDENTSCHOOLENROLLMENT_EXITTYPE);
     AddChild( StudentDTD.STUDENTSCHOOLENROLLMENT_EXITTYPE, new ExitType( Code ) );
 }
예제 #3
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A ExitTypeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating the type of exit for this enrollment."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode(ExitTypeCode val)
 {
     SetField(CommonDTD.EXITTYPE_CODE, val);
 }
예제 #4
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of exit for this enrollment.</param>
 ///
 public ExitType(ExitTypeCode code) : base(CommonDTD.EXITTYPE)
 {
     this.SetCode(code);
 }
 ///<summary>Sets the value of the <c>&lt;ExitType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of exit for this enrollment.</param>
 ///<remarks>
 /// <para>This form of <c>setExitType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>ExitType</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void SetExitType( ExitTypeCode Code )
 {
     RemoveChild( CommonDTD.STUDENTLEARELATIONSHIP_EXITTYPE);
     AddChild( CommonDTD.STUDENTLEARELATIONSHIP_EXITTYPE, new ExitType( Code ) );
 }
예제 #6
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of exit for this enrollment.</param>
 ///
 public ExitType( ExitTypeCode code )
     : base(CommonDTD.EXITTYPE)
 {
     this.SetCode( code );
 }
예제 #7
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A ExitTypeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating the type of exit for this enrollment."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode( ExitTypeCode val )
 {
     SetField( CommonDTD.EXITTYPE_CODE, val );
 }