本文整理汇总了C#中IHttpClient.Initialize方法的典型用法代码示例。如果您正苦于以下问题:C# IHttpClient.Initialize方法的具体用法?C# IHttpClient.Initialize怎么用?C# IHttpClient.Initialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IHttpClient
的用法示例。
在下文中一共展示了IHttpClient.Initialize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetNegotiationResponse
// virtual to allow mocking
public virtual Task<NegotiationResponse> GetNegotiationResponse(IHttpClient httpClient, IConnection connection, string connectionData)
{
if (httpClient == null)
{
throw new ArgumentNullException("httpClient");
}
if (connection == null)
{
throw new ArgumentNullException("connection");
}
var negotiateUrl = UrlBuilder.BuildNegotiate(connection, connectionData);
httpClient.Initialize(connection);
return httpClient.Get(negotiateUrl, connection.PrepareRequest, isLongRunning: false)
.Then(response => response.ReadAsString())
.Then(raw =>
{
if (String.IsNullOrEmpty(raw))
{
throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, Resources.Error_ServerNegotiationFailed));
}
return JsonConvert.DeserializeObject<NegotiationResponse>(raw);
});
}
示例2: GetStartResponse
// virtual to allow mocking
public virtual Task<string> GetStartResponse(IHttpClient httpClient, IConnection connection, string connectionData, string transport)
{
if (httpClient == null)
{
throw new ArgumentNullException("httpClient");
}
if (connection == null)
{
throw new ArgumentNullException("connection");
}
var startUrl = UrlBuilder.BuildStart(connection, transport, connectionData);
httpClient.Initialize(connection);
return httpClient.Get(startUrl, connection.PrepareRequest, isLongRunning: false)
.Then(response => response.ReadAsString());
}
示例3: GetNegotiationResponse
internal static Task<NegotiationResponse> GetNegotiationResponse(IHttpClient httpClient, IConnection connection)
{
httpClient.Initialize(connection);
return httpClient.Get(connection.Url + "negotiate", connection.PrepareRequest, false)
.Then(response => response.ReadAsString())
.Then(json =>
{
if (json == null)
throw new InvalidOperationException("Server negotiation failed.");
return JsonConvert.DeserializeObject<NegotiationResponse>(json);
});
}