I'm trying to get field list for TickHistoryTimeAndSales report using below proxy settings. It does not seem to be working. Could you please tell me how to use the proxy setting in the QickStart C# examples?
var ExtractionsContext = new ExtractionsContext(new Uri("https://hosted.datascopeapi.reuters.com/RestApi/v1/"), "UserName", "Password");
var proxy = new WebProxy("http://MyProxy:Port", true);
var credentials = new NetworkCredential("UserName", "Password"); ExtractionsContext.Options.UseProxy = true;
ExtractionsContext.Options.Proxy = proxy;
ExtractionsContext.Options.Proxy.Credentials = credentials;
var availableFields = ExtractionsContext.GetValidContentFieldTypes(ReportTemplateTypes.TickHistoryTimeAndSales);