示例#1
0
 ///<summary>Sets the value of the <c>&lt;OtherLEA&gt;</c> element.</summary>
 /// <param name="SifRefObject">The name of the object reference.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;OtherLEA&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setOtherLEA</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>OtherLEA</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetOtherLEA( OtherLEASIF_RefObject SifRefObject, string Value )
 {
     RemoveChild( SchoolDTD.SCHOOLINFO_OTHERLEA);
     AddChild( SchoolDTD.SCHOOLINFO_OTHERLEA, new OtherLEA( SifRefObject, Value ) );
 }
示例#2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="sifRefObject">The name of the object reference.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;OtherLEA&amp;gt; element</param>
 ///
 public OtherLEA( OtherLEASIF_RefObject sifRefObject, string value )
     : base(CommonDTD.OTHERLEA)
 {
     this.SetSIF_RefObject( sifRefObject );
     this.Value = value;
 }
示例#3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="sifRefObject">The name of the object reference.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;OtherLEA&amp;gt; element</param>
 ///
 public OtherLEA(OtherLEASIF_RefObject sifRefObject, string value) : base(CommonDTD.OTHERLEA)
 {
     this.SetSIF_RefObject(sifRefObject);
     this.Value = value;
 }
示例#4
0
 /// <summary>
 /// Sets the value of the <c>SIF_RefObject</c> attribute.
 /// </summary>
 /// <param name="val">A OtherLEASIF_RefObject object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The name of the object reference."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetSIF_RefObject( OtherLEASIF_RefObject val )
 {
     SetField( CommonDTD.OTHERLEA_SIF_REFOBJECT, val );
 }
示例#5
0
 /// <summary>
 /// Sets the value of the <c>SIF_RefObject</c> attribute.
 /// </summary>
 /// <param name="val">A OtherLEASIF_RefObject object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The name of the object reference."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetSIF_RefObject(OtherLEASIF_RefObject val)
 {
     SetField(CommonDTD.OTHERLEA_SIF_REFOBJECT, val);
 }