コード例 #1
0
 /// <summary>
 /// Creates the AMI behavior
 /// </summary>
 public AmiBehavior()
 {
     this.certTool = new CertTool
     {
         CertificationAuthorityName = this.configuration?.CaConfiguration.Name,
         ServerName = this.configuration?.CaConfiguration.ServerName
     };
 }
コード例 #2
0
 /// <summary>
 /// Creates a new certificate resource handler
 /// </summary>
 public CertificateResourceHandler()
 {
     this.m_certTool = new CertTool
     {
         CertificationAuthorityName = this.configuration?.CaConfiguration.Name,
         ServerName = this.configuration?.CaConfiguration.ServerName
     };
 }
コード例 #3
0
 /// <summary>
 /// Creates a new CSR request handler
 /// </summary>
 public CertificateSigningRequestHandler()
 {
     this.m_certTool = new CertTool
     {
         CertificationAuthorityName = this.configuration?.CaConfiguration.Name,
         ServerName = this.configuration?.CaConfiguration.ServerName
     };
 }