[Option('h', "host", Required = false, HelpText = "The Hostname default is http://*", Default ="http://*")]
[Option('h',"host",Required=false,HelpText=
"Set to a semicolon-separated (;) list of URL prefixes to which the server should respond. For example, http://localhost:123."+
" Use \"*\" to indicate that the server should listen for requests on any IP address or hostname using the specified port and protocol (for example, http://*:5000). "+
"The protocol (http:// or https://) must be included with each URL. Supported formats vary between servers.",Default="http://*:5000")]
publicstringHost{get;set;}
[Option('p', "port", Required = false, HelpText = "The port, default is 5000", Default = 5000)]
publicintPort{get;set;}
[Option('s', "storage", Required = false, HelpText = "Storage path, where we save the logs and database")]
publicstringStoragePath{get;set;}
[Option('w', "webroot", Required = false, HelpText = "(Root Path for Reverse Proxies) If not specified, the default is \"(Content Root)/wwwroot\", if the path exists. If the path doesn\'t exist, then a no-op file provider is used.")]