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

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

``` diff
 namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic {
     public sealed class QuicTransportOptions {
-        public int MaxBidirectionalStreamCount { get; set; }
+        [RequiresPreviewFeaturesAttribute]
+        public int MaxBidirectionalStreamCount { get; set; }
-        public long? MaxReadBufferSize { get; set; }
+        [RequiresPreviewFeaturesAttribute]
+        public long? MaxReadBufferSize { get; set; }
-        public int MaxUnidirectionalStreamCount { get; set; }
+        [RequiresPreviewFeaturesAttribute]
+        public int MaxUnidirectionalStreamCount { get; set; }
-        public long? MaxWriteBufferSize { get; set; }
+        [RequiresPreviewFeaturesAttribute]
+        public long? MaxWriteBufferSize { get; set; }
     }
 }
```