FastQuant.OrderFactory.OnExecutionReport C# (CSharp) Méthode

OnExecutionReport() public méthode

public OnExecutionReport ( ExecutionReport report ) : Order
report ExecutionReport
Résultat Order
        public Order OnExecutionReport(ExecutionReport report)
        {
            var order = this.orders[report.OrderId];
            if (order == null)
                return null;
            report.Order = order;
            order.OnExecutionReport(report);
            return order;
        }