示例#1
0
 ///<summary>Adds the value of the <c>&lt;FormIdentifier&gt;</c> element.</summary>
 /// <param name="FormIdentifierType">The Type Codes indicate the type and/or uses of the identifier.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;FormIdentifier&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setFormIdentifier</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddFormIdentifier</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void AddFormIdentifier(FormIdentifierType FormIdentifierType, string Value)
 {
     AddChild(AssessmentDTD.FORMIDENTIFIERS_FORMIDENTIFIER, new FormIdentifier(FormIdentifierType, Value));
 }
示例#2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="formIdentifierType">The Type Codes indicate the type and/or uses of the identifier.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;FormIdentifier&amp;gt; element</param>
 ///
 public FormIdentifier(FormIdentifierType formIdentifierType, string value) : base(AssessmentDTD.FORMIDENTIFIER)
 {
     this.SetFormIdentifierType(formIdentifierType);
     this.Value = value;
 }
示例#3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="formIdentifierType">The Type Codes indicate the type and/or uses of the identifier.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;FormIdentifier&amp;gt; element</param>
 ///
 public FormIdentifier( FormIdentifierType formIdentifierType, string value )
     : base(AssessmentDTD.FORMIDENTIFIER)
 {
     this.SetFormIdentifierType( formIdentifierType );
     this.Value = value;
 }
示例#4
0
 /// <summary>
 /// Sets the value of the <c>FormIdentifierType</c> attribute.
 /// </summary>
 /// <param name="val">A FormIdentifierType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The Type Codes indicate the type and/or uses of the identifier."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetFormIdentifierType(FormIdentifierType val)
 {
     SetField(AssessmentDTD.FORMIDENTIFIER_FORMIDENTIFIERTYPE, val);
 }
示例#5
0
 /// <summary>
 /// Sets the value of the <c>FormIdentifierType</c> attribute.
 /// </summary>
 /// <param name="val">A FormIdentifierType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The Type Codes indicate the type and/or uses of the identifier."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetFormIdentifierType( FormIdentifierType val )
 {
     SetField( AssessmentDTD.FORMIDENTIFIER_FORMIDENTIFIERTYPE, val );
 }