Stumps.StumpsServer.StumpsServer C# (CSharp) Method

StumpsServer() public method

Initializes a new instance of the T:Stumps.StumpsServer class.
public StumpsServer ( ) : System
return System
        public StumpsServer()
        {
            this.ListeningPort = NetworkInformation.FindRandomOpenPort();
            _remoteHttpServer = null;

            _syncRoot = new object();
            _stumpsManager = new StumpsManager();

            this.DefaultResponse = FallbackResponse.Http503ServiceUnavailable;
            this.StumpsEnabled = true;
        }