Files
git.stella-ops.org/Mongo2Go-4.1.0/src/Mongo2Go/Helper/IPortPool.cs

10 lines
201 B
C#

namespace Mongo2Go.Helper
{
public interface IPortPool
{
/// <summary>
/// Returns and reserves a new port
/// </summary>
int GetNextOpenPort();
}
}