LumiSoft.Net.Mime.MailboxAddress.OnChanged C# (CSharp) Method

OnChanged() private method

This called when mailox address has changed.
private OnChanged ( ) : void
return void
        internal void OnChanged()
        {
            if(this.Owner != null){
                if(this.Owner is AddressList){
                    ((AddressList)this.Owner).OnCollectionChanged();
                }
                else if(this.Owner is MailboxAddressCollection){
                    ((MailboxAddressCollection)this.Owner).OnCollectionChanged();
                }
            }
        }