diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/IAsAzureHttpClient.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/IAsAzureHttpClient.cs index 68b93cf06f23..459fbdba251b 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/IAsAzureHttpClient.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/IAsAzureHttpClient.cs @@ -26,7 +26,7 @@ public interface IAsAzureHttpClient /// /// Calls SendRequestAsync() for a GET using the default BaseUri and a blank correlationId. /// - /// The Request Url. + /// The Request Url. /// The http response message. Task CallGetAsync(string requestURL); @@ -34,7 +34,7 @@ public interface IAsAzureHttpClient /// Calls SendRequestAsync() for a GET. /// /// The base Uri to call. - /// The request Url. + /// The request Url. /// The CorrelationId /// The http response message. Task CallGetAsync(Uri baseUri, string requestURL, Guid correlationId); @@ -42,7 +42,7 @@ public interface IAsAzureHttpClient /// /// Calls SendRequestAsync() for a POST using the default BaseUri and a blank correlationId. /// - /// The Request Url. + /// The Request Url. /// The content to post (optional). /// The http response message. Task CallPostAsync(string requestURL, HttpContent content = null); @@ -50,8 +50,8 @@ public interface IAsAzureHttpClient /// /// Calls SendRequestAsync() for a POST using a blank correlationId. /// - /// The base Uri to call. - /// The request Url. + /// The base Uri to call. + /// The request Url. /// The content to post (optional). /// The http response message. Task CallPostAsync(Uri baseURI, string requestURL, HttpContent content = null); @@ -59,8 +59,8 @@ public interface IAsAzureHttpClient /// /// Calls SendRequestAsync() for a POST. /// - /// The base Uri to call. - /// The request Url. + /// The base Uri to call. + /// The request Url. /// The CorrelationId /// The content to post (optional). /// The http response message.