9 lines
158 B
C#
9 lines
158 B
C#
namespace Mongo2Go.Helper
|
|
{
|
|
public interface IPortWatcher
|
|
{
|
|
int FindOpenPort();
|
|
bool IsPortAvailable(int portNumber);
|
|
}
|
|
}
|