2
0

X509CertificateTrustedIssuerElementCollection.cs 768 B

123456789101112131415161718192021
  1. //------------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------------------------
  4. namespace System.ServiceModel.Configuration
  5. {
  6. using System.Configuration;
  7. [ConfigurationCollection(typeof(X509CertificateTrustedIssuerElement))]
  8. public sealed class X509CertificateTrustedIssuerElementCollection : ServiceModelConfigurationElementCollection<X509CertificateTrustedIssuerElement>
  9. {
  10. public X509CertificateTrustedIssuerElementCollection()
  11. : base()
  12. { }
  13. protected override object GetElementKey(ConfigurationElement element)
  14. {
  15. return element;
  16. }
  17. }
  18. }