本文整理汇总了C#中HttpClientHelper类的典型用法代码示例。如果您正苦于以下问题:C# HttpClientHelper类的具体用法?C# HttpClientHelper怎么用?C# HttpClientHelper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HttpClientHelper类属于命名空间,在下文中一共展示了HttpClientHelper类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AuthorLogin
/// <summary>
/// 作者登录
/// </summary>
/// <param name="loginAuthor"></param>
/// <returns></returns>
public AuthorInfoEntity AuthorLogin(AuthorInfoQuery queryAuthor)
{
HttpClientHelper clientHelper = new HttpClientHelper();
AuthorInfoEntity authorEntity = clientHelper.PostAuth<AuthorInfoEntity, AuthorInfoQuery>(GetAPIUrl(APIConstant.AUTHORLOGIN), queryAuthor);
if (authorEntity != null)
{
if (authorEntity.Pwd == WKT.Common.Security.MD5Handle.Encrypt(queryAuthor.Pwd))
{
# region 设置该用户的角色列表
RoleAuthorQuery roleAuthorQuery = new RoleAuthorQuery();
roleAuthorQuery.JournalID = queryAuthor.JournalID;
roleAuthorQuery.AuthorID = authorEntity.AuthorID;
IList<RoleAuthorEntity> roleAuthorList = clientHelper.PostAuth<IList<RoleAuthorEntity>, RoleAuthorQuery>(GetAPIUrl(APIConstant.AUTHORGETROLELIST), roleAuthorQuery);
if (roleAuthorList != null && roleAuthorList.Count > 0)
{
authorEntity.RoleIDList = roleAuthorList.Select(p => p.RoleID).ToList<long>();
authorEntity.RoleID = authorEntity.RoleIDList[0];
}
# endregion
if (authorEntity.RoleIDList == null)
{
authorEntity.RoleIDList = new List<long> { -1};
}
return authorEntity;
}
else
{
return null;
}
}
示例2: DealFinaceInAccount
/// <summary>
/// 处理在入款时改变稿件状态
/// </summary>
/// <param name="auditBillEntity"></param>
/// <returns></returns>
public ExecResult DealFinaceInAccount(CirculationEntity cirEntity)
{
HttpClientHelper clientHelper = new HttpClientHelper();
ExecResult result = clientHelper.PostAuth<ExecResult, CirculationEntity>(GetAPIUrl(APIConstant.DealFinaceInAccount), cirEntity);
return result;
}
示例3: DeleteRoleAuthor
/// <summary>
/// 从存储媒介中删除对象
/// </summary>
/// <param name="mapID"></param>
/// <returns></returns>
public ExecResult DeleteRoleAuthor(long mapID)
{
HttpClientHelper clientHelper = new HttpClientHelper();
RoleAuthorEntity roleAuthor = new RoleAuthorEntity();
roleAuthor.MapID = mapID;
ExecResult execResult = clientHelper.PostAuth<ExecResult, RoleAuthorEntity>(GetAPIUrl(APIConstant.DELETEROLEAUTHOR), roleAuthor);
return execResult;
}
示例4: Update
public Address Update(Address address, string authenticationToken)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<Address>(svc.Put(Constants.BlogRestUrl, "address", address, authenticationToken));
return result;
}
}
示例5: Delete
public bool Delete(int addressId, string authenticationToken)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<bool>(svc.Delete(Constants.BlogRestUrl, string.Format("address/{0}", addressId), authenticationToken));
return result;
}
}
示例6: Get
public static ISpider Get()
{
ISettings settings = SettingsFactory.Get();
ILogger logger = LoggerFactory.Get();
IHttpClientHelper httpClientHelper = new HttpClientHelper(settings);
return new Spider(settings, logger, httpClientHelper);
}
示例7: GetByUser
public Address GetByUser(int userId)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<Address>(svc.Get(Constants.BlogRestUrl, string.Format("users/{0}/address", userId)));
return result;
}
}
示例8: Update
public Album Update(Album album, string authenticationToken)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<Album>(svc.Put(Constants.BlogRestUrl, "album", album, authenticationToken));
return result;
}
}
示例9: GetUserDefaultGroup
public Album GetUserDefaultGroup(int userId, string authenticationToken)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<Album>(svc.Get(Constants.BlogRestUrl, string.Format("users/{0}/albums/default", userId), authenticationToken));
return result;
}
}
示例10: Get
public Album Get(int id)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<Album>(svc.Get(Constants.BlogRestUrl, string.Format("album/{0}", id)));
return result;
}
}
示例11: GetRoleAuthor
/// <summary>
/// 获取一个实体对象
/// </summary>
/// <param name="mapID"></param>
/// <returns></returns>
public RoleAuthorEntity GetRoleAuthor(long mapID)
{
HttpClientHelper clientHelper = new HttpClientHelper();
RoleAuthorQuery roleAuthorQuery = new RoleAuthorQuery();
roleAuthorQuery.MapID = mapID;
RoleAuthorEntity roleAuthorEntity = clientHelper.PostAuth<RoleAuthorEntity, RoleAuthorQuery>(GetAPIUrl(APIConstant.GETROLEAUTHORLIST), roleAuthorQuery);
return roleAuthorEntity;
}
示例12: Update
public User Update(User user, string authenticationToken)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<User>(
svc.Put(Constants.BlogRestUrl, "users", user, authenticationToken));
return result;
}
}
示例13: GetByUserName
public User GetByUserName(string username)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<User>(
svc.Get(Constants.BlogRestUrl, string.Format("users/{0}", username)));
return result;
}
}
示例14: ShouldThrowExceptionWhenHttpClientFromGetResponseIsNull
public void ShouldThrowExceptionWhenHttpClientFromGetResponseIsNull()
{
var fakeResponse = new HttpResponseMessage(HttpStatusCode.Accepted) { Content = null };
var fakeHandler = new FakeHttpMessageHandler(fakeResponse);
var httpClient = new HttpClient(fakeHandler) { BaseAddress = new Uri("http://localhost/") };
var httpClientHelper = new HttpClientHelper { HttpClientObj = httpClient };
Assert.Throws<BlogException>(() => httpClientHelper.Get("http://localhost/", "foo"));
}
示例15: GetMoreChatMessagesByUsernames
public List<ChatMessage> GetMoreChatMessagesByUsernames(string fromUsername, string toUsername, string authenticationToken, int skip = 25)
{
using (var svc = new HttpClientHelper())
{
var result = JsonHelper.DeserializeJson<List<ChatMessage>>(
svc.Get(Constants.BlogRestUrl, string.Format("chat/{0}/{1}/more/{2}", fromUsername, toUsername, skip), authenticationToken));
return result;
}
}