Skip to content

Commit 377049b

Browse files
CopilotJamesNK
andauthored
Remove RequiresPreviewFeatures from QuicTransportOptions properties (#64340)
Co-authored-by: JamesNK <[email protected]> Co-authored-by: copilot-swe-agent[bot] <[email protected]>
1 parent 64e9d81 commit 377049b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/Servers/Kestrel/Transport.Quic/src/QuicTransportOptions.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
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-
64
namespace 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>

0 commit comments

Comments
 (0)