System.Data.DataViewManager.OnListChanged C# (CSharp) Method

OnListChanged() protected method

protected OnListChanged ( ListChangedEventArgs e ) : void
e ListChangedEventArgs
return void
        protected virtual void OnListChanged(ListChangedEventArgs e)
        {
            try
            {
                ListChanged?.Invoke(this, e);
            }
            catch (Exception f) when (Common.ADP.IsCatchableExceptionType(f))
            {
                ExceptionBuilder.TraceExceptionWithoutRethrow(f);
                // ignore the exception
            }
        }