Ejemplo n.º 1
0
        private void OnInitOperation(ControllerOperationBase operation)
        {
            this.CurrentOperation = operation;

            operation.ProcessReady += new ProcessReadyHandler(OnProcessReadyHandler);
            OnAfterInitOperation(operation);
        }
Ejemplo n.º 2
0
 protected virtual void OnAfterInitOperation(ControllerOperationBase operation)
 {
 }
Ejemplo n.º 3
0
		protected virtual void OnAfterInitOperation(ControllerOperationBase operation)
		{

		}
Ejemplo n.º 4
0
		private void OnInitOperation(ControllerOperationBase operation)
		{
			this.CurrentOperation = operation;

			operation.ProcessReady += new ProcessReadyHandler(OnProcessReadyHandler);
			OnAfterInitOperation(operation);
		}
 protected override void OnAfterInitOperation(ControllerOperationBase operation)
 {
     operation.PrepareCommandState += new PrepareCommandStateHandler(Controller_PrepareCommandState);
 }