Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
CypherPotato committed Nov 12, 2024
1 parent 4eed66e commit 59b8191
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions extensions/Sisk.IniConfiguration/Sisk.IniConfiguration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<PackageTags>http-server,http,web framework</PackageTags>
<RepositoryType>git</RepositoryType>

<Version>1.2.0</Version>
<AssemblyVersion>1.2.0</AssemblyVersion>
<FileVersion>1.2.0</FileVersion>
<AssemblyVersion>1.3.0</AssemblyVersion>
<FileVersion>1.3.0</FileVersion>
<Version>1.3.0-beta1</Version>

<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
Expand Down
9 changes: 6 additions & 3 deletions src/Http/HttpServerConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public sealed class HttpServerConfiguration : IDisposable
public string AccessLogsFormat { get; set; } = "%ri - [%dd/%dmm/%dy %tH:%ti:%ts %tz] \"%rm %rz%rq\" %sc %lou";

/// <summary>
/// Gets or sets the default <see cref="CultureInfo"/> object which the HTTP server will apply to the request handlers and callbacks thread.
/// Gets or sets the default <see cref="CultureInfo"/> object which the HTTP server will apply to the request
/// handlers and callbacks thread.
/// </summary>
public CultureInfo? DefaultCultureInfo { get; set; }

Expand All @@ -40,7 +41,8 @@ public sealed class HttpServerConfiguration : IDisposable
public LogStream? AccessLogsStream { get; set; } = LogStream.ConsoleOutput;

/// <summary>
/// Gets or sets the <see cref="LogStream"/> object which the HTTP server will write HTTP server error transcriptions to.
/// Gets or sets the <see cref="LogStream"/> object which the HTTP server will write HTTP server error
/// transcriptions to.
/// </summary>
public LogStream? ErrorsLogsStream { get; set; } = LogStream.ConsoleOutput;

Expand Down Expand Up @@ -96,7 +98,8 @@ public long MaximumContentLength
public ListeningHostRepository ListeningHosts { get; set; } = new ListeningHostRepository();

/// <summary>
/// Gets or sets whether the server should throw exceptions instead of reporting it on <see cref="HttpServerExecutionStatus"/> if any is thrown while processing requests.
/// Gets or sets whether the server should throw exceptions instead of reporting it on
/// <see cref="HttpServerExecutionStatus"/> if any is thrown while processing requests.
/// </summary>
public bool ThrowExceptions { get; set; } = false;

Expand Down

0 comments on commit 59b8191

Please sign in to comment.