Exemplo n.º 1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;Country&amp;gt; element</param>
 ///
 public Country( CountryCode value )
     : base(CommonDTD.COUNTRY)
 {
     this.SetValue( value );
 }
Exemplo n.º 2
0
 /// <summary>
 /// Sets the value of the <c>&lt;CountryOfBirth&gt;</c> element.
 /// </summary>
 /// <param name="val">A CountryCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "The individual's country of birth. CBDS: 100028"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetCountryOfBirth( CountryCode val )
 {
     SetField( CommonDTD.DEMOGRAPHICS_COUNTRYOFBIRTH, val );
 }
Exemplo n.º 3
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A CountryCode 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;Country&amp;gt; element"</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetValue( CountryCode val )
 {
     SetField( CommonDTD.COUNTRY, val );
 }
Exemplo n.º 4
0
 /// <summary>
 /// Sets the value of the <c>&lt;Country&gt;</c> element.
 /// </summary>
 /// <param name="val">A CountryCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Country where physical address is located, if known.  Usually this is going to be 'GBR' but could be elsewhere if associated with the military, etc."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetCountry( CountryCode val )
 {
     SetField( CommonDTD.ADDRESS_COUNTRY, val );
 }