예제 #1
0
 public TestController(
     IARMCertCache aRMCertCache,
     IOptions <ARMAuthOptions> armAuth
     )
 {
     _armAuth      = armAuth.Value ?? throw new ArgumentNullException();
     _armCertCache = aRMCertCache ?? throw new ArgumentNullException(nameof(aRMCertCache));
 }
예제 #2
0
 public ARMClientCertController(IARMCertCache armCertCache)
 {
     _armCertCache = armCertCache ?? throw new System.ArgumentNullException(nameof(armCertCache));
 }
 public ARMClientCertificateValidator(IARMCertCache armCertCache)
 {
     _armCertCache = armCertCache ?? throw new System.ArgumentNullException(nameof(armCertCache));
 }