コード例 #1
0
 ///<summary>Sets the value of the <c>&lt;OtherEmailList&gt;</c> element.</summary>
 /// <param name="Email">An Email</param>
 ///<remarks>
 /// <para>This form of <c>setOtherEmailList</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>OtherEmailList</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetOtherEmailList( Email Email )
 {
     RemoveChild( CommonDTD.PERSONALINFORMATION_OTHEREMAILLIST);
     AddChild( CommonDTD.PERSONALINFORMATION_OTHEREMAILLIST, new EmailList( Email ) );
 }
コード例 #2
0
ファイル: ContactInfo.cs プロジェクト: pgodwin/OpenADK-csharp
 ///<summary>Sets the value of the <c>&lt;EmailList&gt;</c> element.</summary>
 /// <param name="Email">An Email</param>
 ///<remarks>
 /// <para>This form of <c>setEmailList</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EmailList</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetEmailList( Email Email )
 {
     RemoveChild( CommonDTD.CONTACTINFO_EMAILLIST);
     AddChild( CommonDTD.CONTACTINFO_EMAILLIST, new EmailList( Email ) );
 }