Exemplo n.º 1
0
 public Cert CreateNewCert(CertType ct)
 {
     return(new Cert(ct, this));
 }
Exemplo n.º 2
0
        public Cert CreateNewCert(string ct)
        {
            CertType CT = new CertType(ct);

            return(new Cert(CT, this));
        }
Exemplo n.º 3
0
 public Cert(CertType ct, Visitor v)
 {
     CertID   = Guid.NewGuid();
     Host     = v;
     CertType = ct;
 }