internal RecorderInterruptedEventArgs(RecorderPolicy policy, RecorderState previous, RecorderState current)
 {
     Reason   = policy;
     Previous = previous;
     Current  = current;
 }
示例#2
0
 internal RecorderInterruptingEventArgs(RecorderPolicy policy, RecorderState state)
 {
     Reason = policy;
     State  = state;
 }