Bloom.Book.Book.InvokeContentsChanged C# (CSharp) Method

InvokeContentsChanged() public method

public InvokeContentsChanged ( EventArgs e ) : void
e EventArgs
return void
        public void InvokeContentsChanged(EventArgs e)
        {
            EventHandler handler = ContentsChanged;
            if (handler != null) handler(this, e);
        }
Book