Exemplo n.º 1
0
 public void UpdateIdentifier(string domainIdentifierAlias)
 {
     if (UsePowershell)
     {
         powershellManager.UpdateIdentifier(domainIdentifierAlias);
     }
     else
     {
         var cmd = new ACMESharp.POSH.UpdateIdentifier();
         cmd.IdentifierRef = domainIdentifierAlias;
         cmd.ExecuteCommand();
     }
 }
Exemplo n.º 2
0
 public void UpdateIdentifierStatus(string alias, string challengeType = "http-01")
 {
     powershellManager.UpdateIdentifier(alias, challengeType);
 }