Beispiel #1
0
 void EWrapper.deltaNeutralValidation(int reqId, UnderComp underComp)
 {
     DeltaNeutralValidation?.Invoke(reqId, underComp);
 }
 void IEWrapper.DeltaNeutralValidation(int reqId, DeltaNeutralContract deltaNeutralContract)
 {
     DeltaNeutralValidation?.Invoke(reqId, deltaNeutralContract);
 }
 public virtual void deltaNeutralValidation(int reqId, UnderComp underComp)
 {
     DeltaNeutralValidation?.Invoke(this, new DeltaNeutralValidationArgs(reqId, underComp));
 }
Beispiel #4
0
 public void deltaNeutralValidation(int reqId, DeltaNeutralContract deltaNeutralContract)
 {
     DeltaNeutralValidation?.Invoke(new DeltaNeutralValidationMessage(reqId, deltaNeutralContract));
 }
Beispiel #5
0
        void EWrapper.deltaNeutralValidation(int reqId, UnderComp underComp)
        {
            ShowDebugMessage(reqId, underComp);

            DeltaNeutralValidation?.Invoke(reqId, underComp);
        }
 public void deltaNeutralValidation(int reqId, UnderComp underComp)
 {
     DeltaNeutralValidation.RaiseEvent(this, new DeltaNeutralValidationEventArgs(reqId, underComp));
 }