void EWrapper.tickSnapshotEnd(int tickerId) { TickSnapshotEnd?.Invoke(tickerId); }
public virtual void tickSnapshotEnd(int tickerId) { TickSnapshotEnd?.Invoke(this, new TickSnapshotEndArgs(tickerId)); }
void EWrapper.tickSnapshotEnd(int tickerId) { ShowDebugMessage(tickerId); TickSnapshotEnd?.Invoke(tickerId); }
public void tickSnapshotEnd(int tickerId) { TickSnapshotEnd?.Invoke(new TickSnapshotEndMessage(tickerId)); }
public void tickSnapshotEnd(int tickerId) { TickSnapshotEnd.RaiseEvent(this, new TickSnapshotEndEventArgs(tickerId)); }