• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# ISecureDataFormat类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中ISecureDataFormat的典型用法代码示例。如果您正苦于以下问题:C# ISecureDataFormat类的具体用法?C# ISecureDataFormat怎么用?C# ISecureDataFormat使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ISecureDataFormat类属于命名空间,在下文中一共展示了ISecureDataFormat类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: AccountController

 public AccountController(ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
 {
     __loggingResourceName = "Account";
     UserManager = userManager;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:Railgun-it,项目名称:autoresolve-app,代码行数:7,代码来源:AccountController.cs


示例2: AccountController

 public AccountController(ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
                 : base(new CFHData())
 {
     UserManager = userManager;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:izhulien,项目名称:CloudFileHosting,代码行数:7,代码来源:AccountController.cs


示例3: AccountController

        public AccountController(UserManager<IdentityUser> userManager,
            ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
        {
            UserManager = userManager;
			//UserManager.UserValidator = new UserValidator<IdentityUser>( UserManager ) { AllowOnlyAlphanumericUserNames = false };
            AccessTokenFormat = accessTokenFormat;
        }
开发者ID:R4CLucky14,项目名称:DotsWithFriends,代码行数:7,代码来源:AccountController.cs


示例4: LoginAccountController

 public LoginAccountController(ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
 {
     UserManager = userManager;
     //  AccessTokenFormat = accessTokenFormat;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:jackyzhong123,项目名称:newhuodongyou,代码行数:7,代码来源:LoginAccountController.cs


示例5: AccountController

 public AccountController(ApplicationUserManager userManager, ApplicationRoleManager roleManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
 {
     RoleManager = roleManager;
     UserManager = userManager;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:adaluo,项目名称:SimonTan,代码行数:7,代码来源:AccountController.cs


示例6: AccountController

 public AccountController(ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat, IJobMatcherData data)
     : base(data)
 {
     UserManager = userManager;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:svetlai,项目名称:JobMatcher,代码行数:7,代码来源:AccountController.cs


示例7: AccountController

 public AccountController(
     ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
 {
     this.UserManager = userManager;
     this.AccessTokenFormat = accessTokenFormat;
 }
开发者ID:Moiraines,项目名称:WebNews,代码行数:7,代码来源:AccountController.cs


示例8: AccountController

 public AccountController(ApplicationUserManager userManager,
     ApplicationTenantManager tenantManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
 {
     UserManager = userManager;
     TenantManager = tenantManager;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:jlumijarvi,项目名称:MultiTenantAccountManager,代码行数:8,代码来源:AccountController.cs


示例9: AccountController

 public AccountController(
     IConfigurationService configuration,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat
     )
 {
     Configuration = configuration;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:rollingthunder,项目名称:DiversityAPI,代码行数:8,代码来源:AccountController.cs


示例10: AccountController

 /// <summary>
 /// ctor
 /// </summary>
 public AccountController(IUnitOfWork unitofwork, 
                          UserManager<UserProfile> userManager,
                          ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
 {
     this.UnitOfwork = unitofwork;
     this.UserManager = userManager;
     this.AccessTokenFormat = accessTokenFormat;
 }
开发者ID:kougiland,项目名称:DurandalAuth,代码行数:11,代码来源:AccountController.cs


示例11: AccountController

 private AccountController(UserManager<AppUser> userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat,
     IAuthenticationService iAuthenticationService)
 {
     UserManager = userManager;
     AccessTokenFormat = accessTokenFormat;
     _iAuthenticationService = iAuthenticationService;
 }
开发者ID:kateEvstratenko,项目名称:Bank,代码行数:8,代码来源:AccountController.cs


示例12: AccountController

 public AccountController(ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat, IAchievementDb achievementDb, IAchievementCalculationManager achievementCalculationManager)
 {
     _achievementDb = achievementDb;
     _achievementCalculationManager = achievementCalculationManager;
     UserManager = userManager;
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:FGFG2,项目名称:WebServerFG,代码行数:8,代码来源:AccountController.cs


示例13: AccountController

 public AccountController(ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat,
     ICodeChestData data)
 {
     UserManager = userManager;
     AccessTokenFormat = accessTokenFormat;
     this.data = data;            
 }
开发者ID:IvayloGeorgiev,项目名称:TA-Kiwi,代码行数:8,代码来源:AccountController.cs


示例14: AuthenticationTokenCreateContext

 public AuthenticationTokenCreateContext(
     [NotNull] HttpContext context,
     [NotNull] ISecureDataFormat<AuthenticationTicket> secureDataFormat,
     [NotNull] AuthenticationTicket ticket)
     : base(context)
 {
     _secureDataFormat = secureDataFormat;
     Ticket = ticket;
 }
开发者ID:kingdango,项目名称:Security,代码行数:9,代码来源:AuthenticationTokenCreateContext.cs


示例15: AccountApiController

 public AccountApiController(ISecureDataFormat<AuthenticationTicket> accessTokenFormat, IAccountProvider accountManager, IAuthenticationManager authenticationManager, AppUserManager appUserManager)
 {
     AccessTokenFormat = accessTokenFormat;
     AccountManager = accountManager;
     AccountManager.AuthenticationManager = authenticationManager;
     AccountManager.UserManager = appUserManager;
     AccountManager.UrlManager = Url;
     AccountManager.StartupPublicClientId = Startup.PublicClientId;
 }
开发者ID:AlexeyVoroshak,项目名称:ASP.NET-MVC-5-Tasks-List,代码行数:9,代码来源:AccountApiController.cs


示例16: AuthenticationTokenReceiveContext

 public AuthenticationTokenReceiveContext(
     [NotNull] HttpContext context,
     [NotNull] ISecureDataFormat<AuthenticationTicket> secureDataFormat,
     [NotNull] string token)
     : base(context)
 {
     _secureDataFormat = secureDataFormat;
     Token = token;
 }
开发者ID:kingdango,项目名称:Security,代码行数:9,代码来源:AuthenticationTokenReceiveContext.cs


示例17: AccountController

 public AccountController(MyUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
 {
     UserManager = userManager;
     //UserManager.PasswordHasher = new CustomPassword();
     
     //password validator
     AccessTokenFormat = accessTokenFormat;
 }
开发者ID:bandiandras,项目名称:SzoftverProjekt,代码行数:9,代码来源:AccountController.cs


示例18: AccountController

    /// <summary>
    ///   ctor
    /// </summary>
    public AccountController(IUnitOfWork unitOfWork, ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
    {
      //_roleManager = new RoleManager<IdentityRole>(new RoleStore<IdentityRole>(new EnergyNetworkDbContext()));
      //_roleManager = HttpContext.Current.GetOwinContext().
      //  Get<ApplicationRoleManager>();

      _unitOfWork = unitOfWork;
      AccessTokenFormat = accessTokenFormat;
    }
开发者ID:htw-bui,项目名称:EnergieNetz,代码行数:12,代码来源:AccountController.cs


示例19: UsersController

 public UsersController(
     ApplicationUserManager userManager,
     ISecureDataFormat<AuthenticationTicket> accessTokenFormat,
     ITripExchangeData data)
     : base(data)
 {
     this.UserManager = userManager;
     this.AccessTokenFormat = accessTokenFormat;
 }
开发者ID:VDGone,项目名称:TelerikAcademy-1,代码行数:9,代码来源:UsersController.cs


示例20: AccountController

        public AccountController(ApplicationUserManager userManager,
            ISecureDataFormat<AuthenticationTicket> accessTokenFormat)
        {
            var context = new DispatcherContext();
            db = context;
            idContext = context;

            UserManager = userManager;
            AccessTokenFormat = accessTokenFormat;
        }
开发者ID:rafaladamczyk,项目名称:dispatcher,代码行数:10,代码来源:AccountController.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# ISecurityAssertionProvider类代码示例发布时间:2022-05-24
下一篇:
C# ISearchService类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap