BasicallyMe.RobinhoodNet.Raw.RawRobinhoodClient.DownloadInstrument C# (CSharp) Method

DownloadInstrument() public method

public DownloadInstrument ( string instrumentUrl ) : Task
instrumentUrl string
return Task
        DownloadInstrument (string instrumentUrl)
        {
            return doGet(instrumentUrl);
        }
        

Usage Example

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