当前位置: 首页>>代码示例>>C#>>正文


C# HttpClientHelper类代码示例

本文整理汇总了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;
                }
            }
开发者ID:zhanglc8801,项目名称:WKT2015,代码行数:37,代码来源:AuthorFacadeAPIService.cs

示例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;
        }
开发者ID:zhanglc8801,项目名称:WKT2015,代码行数:12,代码来源:FlowFacadeService.cs

示例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;
 }
开发者ID:zhanglc8801,项目名称:WKT2015,代码行数:13,代码来源:RoleAuthorFacadeAPIService.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:8,代码来源:AddressRestResource.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:8,代码来源:AddressRestResource.cs

示例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);
        }
开发者ID:cassiodeveloper,项目名称:ZapPenTester,代码行数:8,代码来源:SpiderFactory.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:8,代码来源:AddressRestResource.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:8,代码来源:AlbumRestResource.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:8,代码来源:AlbumRestResource.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:8,代码来源:AlbumRestResource.cs

示例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;
 }
开发者ID:zhanglc8801,项目名称:WKT2015,代码行数:13,代码来源:RoleAuthorFacadeAPIService.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:9,代码来源:UsersRestResource.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:9,代码来源:UsersRestResource.cs

示例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"));
        }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:9,代码来源:HttpClientHelperTest.cs

示例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;
     }
 }
开发者ID:jsnmgpnty,项目名称:Blogness2.0,代码行数:9,代码来源:ChatMessagesRestResource.cs


注:本文中的HttpClientHelper类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。