IX509Selector.cs 416 B

12345678910111213141516171819
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store
  5. {
  6. public interface IX509Selector
  7. #if !(SILVERLIGHT || PORTABLE || NETFX_CORE)
  8. : ICloneable
  9. #endif
  10. {
  11. #if SILVERLIGHT || PORTABLE || NETFX_CORE
  12. object Clone();
  13. #endif
  14. bool Match(object obj);
  15. }
  16. }
  17. #pragma warning restore
  18. #endif