Beispiel #1
0
        public async void ChainedRequests()
        {
            try {
                var allSymbos = await m_Client.GetAllSymbols();

                var firstSymbol = allSymbos[0].Symbol;
                var quote       = await m_Client.GetStockQuote(firstSymbol);

                Debug.Log("Quote for " + firstSymbol + " " + quote);
            }
            catch (Exception e) {
                Debug.LogError(e);
            }
        }