LumiSoft.Net.Mime.MailboxAddress.OnChanged C# (CSharp) 메소드

OnChanged() 개인적인 메소드

This called when mailox address has changed.
private OnChanged ( ) : void
리턴 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();
                }
            }
        }