diff --git a/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.0.cs b/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.0.cs index d6344a6f2e..dbd0a70349 100644 --- a/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.0.cs +++ b/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.0.cs @@ -111,7 +111,7 @@ namespace Microsoft.AspNetCore.Connections } public partial interface IConnectionFactory { - System.Threading.Tasks.ValueTask ConnectAsync(System.Net.EndPoint endPoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.ValueTask ConnectAsync(System.Net.EndPoint endpoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } public partial interface IConnectionListener : System.IAsyncDisposable { diff --git a/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.1.cs b/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.1.cs index d6344a6f2e..dbd0a70349 100644 --- a/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.1.cs +++ b/src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.1.cs @@ -111,7 +111,7 @@ namespace Microsoft.AspNetCore.Connections } public partial interface IConnectionFactory { - System.Threading.Tasks.ValueTask ConnectAsync(System.Net.EndPoint endPoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.ValueTask ConnectAsync(System.Net.EndPoint endpoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } public partial interface IConnectionListener : System.IAsyncDisposable { diff --git a/src/Servers/Connections.Abstractions/src/IConnectionFactory.cs b/src/Servers/Connections.Abstractions/src/IConnectionFactory.cs index 9dd5171a17..1b70c54eab 100644 --- a/src/Servers/Connections.Abstractions/src/IConnectionFactory.cs +++ b/src/Servers/Connections.Abstractions/src/IConnectionFactory.cs @@ -15,11 +15,11 @@ namespace Microsoft.AspNetCore.Connections /// /// Creates a new connection to an endpoint. /// - /// The to connect to. + /// The to connect to. /// The token to monitor for cancellation requests. The default value is . /// /// A that represents the asynchronous connect, yielding the for the new connection when completed. /// - ValueTask ConnectAsync(EndPoint endPoint, CancellationToken cancellationToken = default); + ValueTask ConnectAsync(EndPoint endpoint, CancellationToken cancellationToken = default); } }