Пример #1
0
 ///<summary>Sets the value of the <c>&lt;LanguageOfInstruction&gt;</c> element.</summary>
 /// <param name="Code">A Code</param>
 ///<remarks>
 /// <para>This form of <c>setLanguageOfInstruction</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>LanguageOfInstruction</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetLanguageOfInstruction(AustralianClassificationOfLanguagesType Code)
 {
     RemoveChild(SchoolDTD.SECTIONINFO_LANGUAGEOFINSTRUCTION);
     AddChild(SchoolDTD.SECTIONINFO_LANGUAGEOFINSTRUCTION, new LanguageOfInstruction(Code));
 }
Пример #2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Parent2Language&gt;</c> element.
 /// </summary>
 /// <param name="val">A AustralianClassificationOfLanguagesType object</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.5</para>
 /// </remarks>
 public void SetParent2Language(AustralianClassificationOfLanguagesType val)
 {
     SetField(StudentDTD.MOSTRECENT_PARENT2LANGUAGE, val);
 }
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AustralianClassificationOfLanguagesType object</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetCode(AustralianClassificationOfLanguagesType val)
 {
     SetField(SchoolDTD.LANGUAGEOFINSTRUCTION_CODE, val);
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">A Code</param>
 ///
 public LanguageOfInstruction(AustralianClassificationOfLanguagesType code) : base(SchoolDTD.LANGUAGEOFINSTRUCTION)
 {
     this.SetCode(code);
 }
Пример #5
0
 ///<summary>Adds the value of the <c>&lt;Language&gt;</c> element.</summary>
 /// <param name="Code">
 /// The code representing the specific language that an
 /// individual uses to communicate.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;Language&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setLanguage</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddLanguage</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void AddLanguage(AustralianClassificationOfLanguagesType Code, string Value)
 {
     AddChild(CommonDTD.LANGUAGELIST_LANGUAGE, new Language(Code, Value));
 }
Пример #6
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">
 /// The code representing the specific language that an
 /// individual uses to communicate.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;Language&amp;gt; element</param>
 ///
 public Language(AustralianClassificationOfLanguagesType code, string value) : base(CommonDTD.LANGUAGE)
 {
     this.SetCode(code);
     this.Value = value;
 }
Пример #7
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AustralianClassificationOfLanguagesType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "
 /// The code representing the specific language that an
 /// individual uses to communicate."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetCode(AustralianClassificationOfLanguagesType val)
 {
     SetField(CommonDTD.LANGUAGE_CODE, val);
 }