Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-rc1_Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.md « Microsoft.AspNetCore.App « rc1 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d37e42b793f91f5a101baf647169629ec9f0c015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Microsoft.AspNetCore.Server.Kestrel.Transport.Quic

``` diff
 namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic {
-    public class QuicTransportOptions {
+    public sealed class QuicTransportOptions {
+        public long DefaultCloseErrorCode { get; set; }
+        public long DefaultStreamErrorCode { get; set; }
-        public TimeSpan IdleTimeout { [CompilerGeneratedAttribute] get; [CompilerGeneratedAttribute] set; }
-        public ushort MaxBidirectionalStreamCount { [CompilerGeneratedAttribute] get; [CompilerGeneratedAttribute] set; }
+        public int MaxBidirectionalStreamCount { [CompilerGeneratedAttribute] get; [CompilerGeneratedAttribute] set; }
-        public ushort MaxUnidirectionalStreamCount { [CompilerGeneratedAttribute] get; [CompilerGeneratedAttribute] set; }
+        public int MaxUnidirectionalStreamCount { [CompilerGeneratedAttribute] get; [CompilerGeneratedAttribute] set; }
     }
 }
```