Пример #1
0
        private void HandleFieldModification(object sender, FieldModificationEventArgs e)
        {
            if (e.SuspendPolicy == SuspendPolicy.All)
                Interlocked.Increment(ref _suspended);

            throw new NotImplementedException();
        }
Пример #2
0
 internal void OnFieldModification(FieldModificationEventArgs e)
 {
     var t = FieldModification;
     if (t != null)
         t(this, e);
 }