コード例 #1
0
 ///<summary>Sets the value of the <c>&lt;EntryType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of entry for this enrollment</param>
 ///<remarks>
 /// <para>This form of <c>setEntryType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EntryType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetEntryType( EntryTypeCode Code )
 {
     RemoveChild( StudentDTD.STUDENTSCHOOLENROLLMENT_ENTRYTYPE);
     AddChild( StudentDTD.STUDENTSCHOOLENROLLMENT_ENTRYTYPE, new EntryType( Code ) );
 }
コード例 #2
0
ファイル: EntryType.cs プロジェクト: rafidzal/OpenADK-csharp
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A EntryTypeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating the type of entry for this enrollment"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode( EntryTypeCode val )
 {
     SetField( CommonDTD.ENTRYTYPE_CODE, val );
 }
コード例 #3
0
ファイル: EntryType.cs プロジェクト: rafidzal/OpenADK-csharp
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of entry for this enrollment</param>
 ///
 public EntryType( EntryTypeCode code )
     : base(CommonDTD.ENTRYTYPE)
 {
     this.SetCode( code );
 }
コード例 #4
0
 ///<summary>Sets the value of the <c>&lt;EntryType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of entry for this enrollment</param>
 ///<remarks>
 /// <para>This form of <c>setEntryType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EntryType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.4</para>
 /// </remarks>
 public void SetEntryType( EntryTypeCode Code )
 {
     RemoveChild( EtranscriptsDTD.STUDENTSCHOOLENROLLMENTHISTORY_ENTRYTYPE);
     AddChild( EtranscriptsDTD.STUDENTSCHOOLENROLLMENTHISTORY_ENTRYTYPE, new EntryType( Code ) );
 }
コード例 #5
0
 ///<summary>Sets the value of the <c>&lt;EntryType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of entry for this enrollment</param>
 ///<remarks>
 /// <para>This form of <c>setEntryType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EntryType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void SetEntryType(EntryTypeCode Code)
 {
     RemoveChild(CommonDTD.STUDENTLEARELATIONSHIP_ENTRYTYPE);
     AddChild(CommonDTD.STUDENTLEARELATIONSHIP_ENTRYTYPE, new EntryType(Code));
 }
コード例 #6
0
 ///<summary>Sets the value of the <c>&lt;EntryType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of entry for this enrollment</param>
 ///<remarks>
 /// <para>This form of <c>setEntryType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EntryType</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void SetEntryType( EntryTypeCode Code )
 {
     RemoveChild( CommonDTD.STUDENTLEARELATIONSHIP_ENTRYTYPE);
     AddChild( CommonDTD.STUDENTLEARELATIONSHIP_ENTRYTYPE, new EntryType( Code ) );
 }
コード例 #7
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A EntryTypeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating the type of entry for this enrollment"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode(EntryTypeCode val)
 {
     SetField(CommonDTD.ENTRYTYPE_CODE, val);
 }
コード例 #8
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of entry for this enrollment</param>
 ///
 public EntryType(EntryTypeCode code) : base(CommonDTD.ENTRYTYPE)
 {
     this.SetCode(code);
 }