BasicallyMe.RobinhoodNet.Raw.RawRobinhoodClient.DownloadInstrument C# (CSharp) Метод

DownloadInstrument() публичный Метод

public DownloadInstrument ( string instrumentUrl ) : Task
instrumentUrl string
Результат Task
        DownloadInstrument (string instrumentUrl)
        {
            return doGet(instrumentUrl);
        }
        

Usage Example

Пример #1
0
        DownloadInstrument(Url <Instrument> instrumentUrl)
        {
            var json = await _rawClient.DownloadInstrument(instrumentUrl.Uri.ToString()).ConfigureAwait(false);

            return(new Instrument(json));
        }
All Usage Examples Of BasicallyMe.RobinhoodNet.Raw.RawRobinhoodClient::DownloadInstrument