AMEEClient.Client.BeforeIssueRequest C# (CSharp) Method

BeforeIssueRequest() protected method

protected BeforeIssueRequest ( System request, string url, string target, string uriTemplate, string method, object>.Dictionary parameters, System.TimeSpan cacheDuration, string throttleScope ) : void
request System
url string
target string
uriTemplate string
method string
parameters object>.Dictionary
cacheDuration System.TimeSpan
throttleScope string
return void
        protected override void BeforeIssueRequest(System.Net.WebRequest request, string url, string target, string uriTemplate, string method, Dictionary<string, object> parameters, TimeSpan cacheDuration, string throttleScope)
        {
            ((HttpWebRequest)request).Accept = "application/json";
            base.BeforeIssueRequest(request, url, target, uriTemplate, method, parameters, cacheDuration, throttleScope);
        }