internal IssuedTokenServiceCredential(IssuedTokenServiceCredential other) { _audienceUriMode = other._audienceUriMode; _allowedAudienceUris = new List <string>(other._allowedAudienceUris); _samlSerializer = other._samlSerializer; _knownCertificates = new List <X509Certificate2>(other._knownCertificates); _certificateValidationMode = other._certificateValidationMode; _customCertificateValidator = other._customCertificateValidator; _trustedStoreLocation = other._trustedStoreLocation; _revocationMode = other._revocationMode; _allowUntrustedRsaIssuers = other._allowUntrustedRsaIssuers; _isReadOnly = other._isReadOnly; }
internal IssuedTokenServiceCredential(IssuedTokenServiceCredential other) { this.audienceUriMode = other.audienceUriMode; this.allowedAudienceUris = new List <string>(other.allowedAudienceUris); this.samlSerializer = other.samlSerializer; this.knownCertificates = new List <X509Certificate2>(other.knownCertificates); this.certificateValidationMode = other.certificateValidationMode; this.customCertificateValidator = other.customCertificateValidator; this.trustedStoreLocation = other.trustedStoreLocation; this.revocationMode = other.revocationMode; this.allowUntrustedRsaIssuers = other.allowUntrustedRsaIssuers; this.isReadOnly = other.isReadOnly; }