///<summary>Sets the value of the <c><OtherEmailList></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 ) ); }
///<summary>Sets the value of the <c><EmailList></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 ) ); }