コード例 #1
0
 public LoginManagerController(IStringCipher iStringCipher,
                               IUserService iUserService,
                               IUserRequestMapper iUserRequestMapper,
                               ISiteConfiguration iSiteConfiguration)
 {
     this.iStringCipher      = Guard.ArgumentNotNullAndReturn(iStringCipher, "iStringCipher");
     this.iUserService       = Guard.ArgumentNotNullAndReturn(iUserService, "iUserService");
     this.iUserRequestMapper = Guard.ArgumentNotNullAndReturn(iUserRequestMapper, "iUserRequestMapper");
     this.iSiteConfiguration = Guard.ArgumentNotNullAndReturn(iSiteConfiguration, "iSiteConfiguration");
 }
コード例 #2
0
 static ExmEventsGenerator()
 {
     Cipher = Sitecore.Configuration.Factory.CreateObject("exmAuthenticatedCipher", true) as IStringCipher;
 }
コード例 #3
0
 public SignalRChatAuthorizeAttribute(IStringCipher iStringCipher)
 {
     this.iStringCipher = Guard.ArgumentNotNullAndReturn(iStringCipher, "iStringCipher");
 }
コード例 #4
0
 public XpathEncryptorTest()
 {
     _stringCypher = new StringCipher();
 }
コード例 #5
0
 static GenerateEventService()
 {
     Cipher = Factory.CreateObject("exmAuthenticatedCipher", true) as IStringCipher;
 }