CustomerOrder.Actor.CustomerOrderActor.GetOrderStatusAsStringAsync C# (CSharp) Method

GetOrderStatusAsStringAsync() public method

Returns the status of the Customer Order.
public GetOrderStatusAsStringAsync ( ) : Task
return Task
        public async Task<string> GetOrderStatusAsStringAsync()
        {
            return (await this.GetOrderStatusAsync()).ToString();
        }