Billing.BillingService.BillingRequest.RunRequest C# (CSharp) Method

RunRequest() public method

Run the request, starting the connection if necessary.
public RunRequest ( ) : bool
return bool
            public virtual bool RunRequest()
            {
                if (RunIfConnected())
                {
                    return true;
                }

                if (outerInstance.BindToMarketBillingService())
                {
                    // Add a pending request to run when the service is connected.
                    mPendingRequests.AddLast(this);
                    return true;
                }
                return false;
            }