#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using System.Collections.Generic;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections
{
/// A generic interface describing a simple store of objects.
/// The covariant type of stored objects.
public interface IStore
{
/// Enumerate the (possibly empty) collection of objects matched by the given selector.
/// The used to select matching objects.
/// An of the matching objects.
IEnumerable EnumerateMatches(ISelector selector);
}
}
#pragma warning restore
#endif