コード例 #1
0
 ///<summary>Adds the value of the <c>&lt;ParticipationType&gt;</c> element.</summary>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;ParticipationType&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setParticipationType</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddParticipationType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void AddParticipationType(ParticipationEnum Value)
 {
     AddChild(LearnerDTD.PARTICIPATIONTYPES_PARTICIPATIONTYPE, new ParticipationType(Value));
 }
コード例 #2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;ParticipationType&amp;gt; element</param>
 ///
 public ParticipationType( ParticipationEnum value )
     : base(LearnerDTD.PARTICIPATIONTYPE)
 {
     this.SetValue( value );
 }
コード例 #3
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A ParticipationEnum object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;ParticipationType&amp;gt; element"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetValue(ParticipationEnum val)
 {
     SetField(LearnerDTD.PARTICIPATIONTYPE, val);
 }
コード例 #4
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A ParticipationEnum object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;ParticipationType&amp;gt; element"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetValue( ParticipationEnum val )
 {
     SetField( LearnerDTD.PARTICIPATIONTYPE, val );
 }
コード例 #5
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;ParticipationType&amp;gt; element</param>
 ///
 public ParticipationType(ParticipationEnum value) : base(LearnerDTD.PARTICIPATIONTYPE)
 {
     this.SetValue(value);
 }