Bloom.Book.Book.InvokeContentsChanged C# (CSharp) Метод

InvokeContentsChanged() публичный Метод

public InvokeContentsChanged ( EventArgs e ) : void
e EventArgs
Результат void
        public void InvokeContentsChanged(EventArgs e)
        {
            EventHandler handler = ContentsChanged;
            if (handler != null) handler(this, e);
        }
Book