Skip to content

Commit ad94d41

Browse files
davidfowlanalogrelay
authored andcommitted
Fixed parameter name casing (dotnet#12681)
1 parent c23b9fe commit ad94d41

3 files changed

+4
-4
lines changed

src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.0.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public partial interface IConnectionBuilder
111111
}
112112
public partial interface IConnectionFactory
113113
{
114-
System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Connections.ConnectionContext> ConnectAsync(System.Net.EndPoint endPoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
114+
System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Connections.ConnectionContext> ConnectAsync(System.Net.EndPoint endpoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
115115
}
116116
public partial interface IConnectionListener : System.IAsyncDisposable
117117
{

src/Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.netstandard2.1.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public partial interface IConnectionBuilder
111111
}
112112
public partial interface IConnectionFactory
113113
{
114-
System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Connections.ConnectionContext> ConnectAsync(System.Net.EndPoint endPoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
114+
System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Connections.ConnectionContext> ConnectAsync(System.Net.EndPoint endpoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
115115
}
116116
public partial interface IConnectionListener : System.IAsyncDisposable
117117
{

src/Servers/Connections.Abstractions/src/IConnectionFactory.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ public interface IConnectionFactory
1515
/// <summary>
1616
/// Creates a new connection to an endpoint.
1717
/// </summary>
18-
/// <param name="endPoint">The <see cref="EndPoint"/> to connect to.</param>
18+
/// <param name="endpoint">The <see cref="EndPoint"/> to connect to.</param>
1919
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None" />.</param>
2020
/// <returns>
2121
/// A <see cref="ValueTask{TResult}" /> that represents the asynchronous connect, yielding the <see cref="ConnectionContext" /> for the new connection when completed.
2222
/// </returns>
23-
ValueTask<ConnectionContext> ConnectAsync(EndPoint endPoint, CancellationToken cancellationToken = default);
23+
ValueTask<ConnectionContext> ConnectAsync(EndPoint endpoint, CancellationToken cancellationToken = default);
2424
}
2525
}

0 commit comments

Comments
 (0)