Exemplo n.º 1
0
 internal FrameExecutionContext(IExecutionContextDelegate executionContextDelegate, Frame frame) : base(executionContextDelegate)
 {
     Frame = frame;
 }
Exemplo n.º 2
0
 public ExecutionContext(IExecutionContextDelegate executionContextDelegate)
 {
     Delegate = executionContextDelegate;
 }
 internal FrameExecutionContext(IExecutionContextDelegate executionContextDelegate, Frame frame, ISelectors selectors = null) : base(executionContextDelegate)
 {
     Frame      = frame;
     _selectors = selectors ?? Selectors.Instance.Value;
 }
Exemplo n.º 4
0
 protected ExecutionContext(IExecutionContextDelegate executionContextDelegate) => Delegate = executionContextDelegate;