Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the CertificateIssuerSetParameters
 /// class.
 /// </summary>
 /// <param name="provider">The name of the issuer.</param>
 /// <param name="credentials">The credentials to be used for the
 /// issuer.</param>
 /// <param name="organizationDetails">Details of the organization as
 /// provided to the issuer.</param>
 /// <param name="attributes">Attributes of the issuer object.</param>
 public CertificateIssuerSetParameters(string provider, IssuerCredentials credentials = default(IssuerCredentials), OrganizationDetails organizationDetails = default(OrganizationDetails), IssuerAttributes attributes = default(IssuerAttributes))
 {
     Provider            = provider;
     Credentials         = credentials;
     OrganizationDetails = organizationDetails;
     Attributes          = attributes;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the IssuerBundle class.
 /// </summary>
 /// <param name="id">Identifier for the issuer object.</param>
 /// <param name="provider">The name of the issuer.</param>
 /// <param name="credentials">The credentials to be used for the
 /// issuer.</param>
 /// <param name="organizationDetails">Details of the organization as
 /// provided to the issuer.</param>
 /// <param name="attributes">Attributes of the issuer object.</param>
 public IssuerBundle(string id = default(string), string provider = default(string), IssuerCredentials credentials = default(IssuerCredentials), OrganizationDetails organizationDetails = default(OrganizationDetails), IssuerAttributes attributes = default(IssuerAttributes))
 {
     Id                  = id;
     Provider            = provider;
     Credentials         = credentials;
     OrganizationDetails = organizationDetails;
     Attributes          = attributes;
 }