示例#1
0
        public ContractInfo[] GetVersionInfo(string feedType, string docKey, string tradingSystem, string fileName, string URL)
        {
            GetVersionInfoForDocumentRequest request = new GetVersionInfoForDocumentRequest
            {
                DocumentKey       = docKey,
                FeedType          = feedType,
                TradingSystemCode = tradingSystem,
            };

            GetVersionInfoForResponse response = _client.GetVersionInfoForDocument(request);

            return(response.QueryResult);
        }
示例#2
0
       public ContractInfo[] GetVersionInfo(string feedType, string docKey, string tradingSystem, string fileName, string URL)
       {
           GetVersionInfoForDocumentRequest request = new GetVersionInfoForDocumentRequest
           {
               DocumentKey = docKey,
               FeedType = feedType,              
               TradingSystemCode = tradingSystem,                          
           };

           GetVersionInfoForResponse response = _client.GetVersionInfoForDocument(request);

           return response.QueryResult;
       }