コード例 #1
0
 ///<summary>Adds the value of the <c>&lt;IdentificationInfo&gt;</c> element.</summary>
 /// <param name="Code">Code indicating which identification system is used.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;IdentificationInfo&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setIdentificationInfo</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddIdentificationInfo</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void AddIdentificationInfo(IdentificationSystem Code, string Value)
 {
     AddChild(CommonDTD.IDENTIFICATIONINFOLIST_IDENTIFICATIONINFO, new IdentificationInfo(Code, Value));
 }
コード例 #2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating which identification system is used.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;IdentificationInfo&amp;gt; element</param>
 ///
 public IdentificationInfo(IdentificationSystem code, string value) : base(CommonDTD.IDENTIFICATIONINFO)
 {
     this.SetCode(code);
     this.Value = value;
 }
コード例 #3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating which identification system is used.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;IdentificationInfo&amp;gt; element</param>
 ///
 public IdentificationInfo( IdentificationSystem code, string value )
     : base(CommonDTD.IDENTIFICATIONINFO)
 {
     this.SetCode( code );
     this.Value = value;
 }
コード例 #4
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A IdentificationSystem object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating which identification system is used."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode(IdentificationSystem val)
 {
     SetField(CommonDTD.IDENTIFICATIONINFO_CODE, val);
 }
コード例 #5
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A IdentificationSystem object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating which identification system is used."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode( IdentificationSystem val )
 {
     SetField( CommonDTD.IDENTIFICATIONINFO_CODE, val );
 }