///<summary>Adds the value of the <c><IdentificationInfo></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 &lt;IdentificationInfo&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)); }
/// <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 &lt;IdentificationInfo&gt; element</param> /// public IdentificationInfo(IdentificationSystem code, string value) : base(CommonDTD.IDENTIFICATIONINFO) { this.SetCode(code); this.Value = value; }
/// <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 &lt;IdentificationInfo&gt; element</param> /// public IdentificationInfo( IdentificationSystem code, string value ) : base(CommonDTD.IDENTIFICATIONINFO) { this.SetCode( code ); this.Value = value; }
/// <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); }
/// <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 ); }