System.Data.DataViewManager.OnListChanged C# (CSharp) Метод

OnListChanged() защищенный Метод

protected OnListChanged ( ListChangedEventArgs e ) : void
e ListChangedEventArgs
Результат 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
            }
        }