LumiSoft.Net.Mime.AddressList.Clear C# (CSharp) Method

Clear() public method

Clears the collection of all addresses.
public Clear ( ) : void
return void
        public void Clear()
        {
            foreach(Address address in m_pAddresses){
                address.Owner = null;
            }
            m_pAddresses.Clear();

            OnCollectionChanged();
        }