Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
[XSP] Sort members
Browse files Browse the repository at this point in the history
  • Loading branch information
miniBill committed Aug 26, 2013
1 parent 645e6f0 commit 7435384
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Mono.WebServer.XSP/ConfigurationManager.cs
Expand Up @@ -5,16 +5,6 @@
namespace Mono.WebServer.XSP {
class ConfigurationManager : ServerConfigurationManager
{
public ConfigurationManager (string name, bool quietDefault) : base (name)
{
Add (nonstop, quiet, randomPort, https, httpsClientAccept, httpsClientRequire, noHidden,
minThreads, port,
p12File, cert, pkFile, pkPwd, pidFile,
protocols);
address.MaybeUpdate (SettingSource.Default, IPAddress.Any);
quiet.MaybeUpdate (SettingSource.Default, quietDefault);
}

#region Backing fields
readonly BoolSetting nonstop = new BoolSetting ("nonstop", "Don't stop the server by pressing enter. Must be used when the server has no controlling terminal.");
readonly BoolSetting quiet = new BoolSetting ("quiet", "Disable the initial start up information.");
Expand Down Expand Up @@ -96,5 +86,15 @@ public ConfigurationManager (string name, bool quietDefault) : base (name)
return "XSP server is a sample server that hosts the ASP.NET runtime in a minimalistic HTTP server";
}
}

public ConfigurationManager (string name, bool quietDefault) : base (name)
{
Add (nonstop, quiet, randomPort, https, httpsClientAccept, httpsClientRequire, noHidden,
minThreads, port,
p12File, cert, pkFile, pkPwd, pidFile,
protocols);
address.MaybeUpdate (SettingSource.Default, IPAddress.Any);
quiet.MaybeUpdate (SettingSource.Default, quietDefault);
}
}
}

0 comments on commit 7435384

Please sign in to comment.