File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
src/Servers/Kestrel/Transport.Quic/src Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 11// Licensed to the .NET Foundation under one or more agreements.
22// The .NET Foundation licenses this file to you under the MIT license.
33
4- using System . Runtime . Versioning ;
5-
64namespace Microsoft . AspNetCore . Server . Kestrel . Transport . Quic ;
75
86/// <summary>
@@ -16,25 +14,21 @@ public sealed class QuicTransportOptions
1614 /// <summary>
1715 /// The maximum number of concurrent bi-directional streams per connection.
1816 /// </summary>
19- [ RequiresPreviewFeatures ]
2017 public int MaxBidirectionalStreamCount { get ; set ; } = 100 ;
2118
2219 /// <summary>
2320 /// The maximum number of concurrent inbound uni-directional streams per connection.
2421 /// </summary>
25- [ RequiresPreviewFeatures ]
2622 public int MaxUnidirectionalStreamCount { get ; set ; } = 10 ;
2723
2824 /// <summary>
2925 /// The maximum read size.
3026 /// </summary>
31- [ RequiresPreviewFeatures ]
3227 public long ? MaxReadBufferSize { get ; set ; } = 1024 * 1024 ;
3328
3429 /// <summary>
3530 /// The maximum write size.
3631 /// </summary>
37- [ RequiresPreviewFeatures ]
3832 public long ? MaxWriteBufferSize { get ; set ; } = 64 * 1024 ;
3933
4034 /// <summary>
You can’t perform that action at this time.
0 commit comments