ISet.cs 520 B

1234567891011121314151617181920212223
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.Collections;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections
  6. {
  7. public interface ISet
  8. : ICollection
  9. {
  10. void Add(object o);
  11. void AddAll(IEnumerable e);
  12. void Clear();
  13. bool Contains(object o);
  14. bool IsEmpty { get; }
  15. bool IsFixedSize { get; }
  16. bool IsReadOnly { get; }
  17. void Remove(object o);
  18. void RemoveAll(IEnumerable e);
  19. }
  20. }
  21. #pragma warning restore
  22. #endif