Ejemplo n.º 1
0
        private void HandleFieldModification(object sender, FieldModificationEventArgs e)
        {
            if (e.SuspendPolicy == SuspendPolicy.All)
                Interlocked.Increment(ref _suspended);

            throw new NotImplementedException();
        }
Ejemplo n.º 2
0
 internal void OnFieldModification(FieldModificationEventArgs e)
 {
     var t = FieldModification;
     if (t != null)
         t(this, e);
 }