Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed argument requestId from loopbackserver.cs #58678

Merged
merged 21 commits into from
Nov 23, 2021
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
824b4d3
removed argument requestId
AnudeepGunukula Sep 4, 2021
05afbeb
Merge branch 'dotnet:main' into main
AnudeepGunukula Sep 6, 2021
2b435f3
removed requestId in LoopbackServer.cs
AnudeepGunukula Sep 7, 2021
a714e82
Merge branch 'dotnet:main' into main
AnudeepGunukula Sep 7, 2021
ff6c249
Update src/libraries/Common/tests/System/Net/Http/GenericLoopbackServ…
AnudeepGunukula Sep 7, 2021
dd33a08
Merge branch 'dotnet:main' into main
AnudeepGunukula Sep 8, 2021
c75dfdb
commit after changes
AnudeepGunukula Sep 15, 2021
8575dee
Merge branch 'dotnet:main' into main
AnudeepGunukula Sep 15, 2021
05173b9
Merge branch 'dotnet:main' into main
AnudeepGunukula Sep 18, 2021
8093748
removed requestId from LoopbackServer
AnudeepGunukula Sep 18, 2021
92fd0fd
removed requestId from Http2 and Http3 LoopbackConnection
AnudeepGunukula Sep 18, 2021
690fb0f
Merge branch 'dotnet:main' into main
AnudeepGunukula Sep 19, 2021
5d3b57d
removed requestId from HttpClientHandlerTest.Http2.cs
AnudeepGunukula Sep 19, 2021
8d3a472
Merge branch 'dotnet:main' into main
AnudeepGunukula Oct 27, 2021
636d0c8
commit after modifying http2 test
AnudeepGunukula Oct 30, 2021
9e1f7cb
created new function in http2
AnudeepGunukula Nov 3, 2021
6a82b71
Update src/libraries/Common/tests/System/Net/Http/Http2LoopbackConnec…
AnudeepGunukula Nov 23, 2021
fd2c887
Update src/libraries/Common/tests/System/Net/Http/Http2LoopbackConnec…
AnudeepGunukula Nov 23, 2021
fefa416
Update src/libraries/Common/tests/System/Net/Http/Http2LoopbackConnec…
AnudeepGunukula Nov 23, 2021
d06ddf0
Update src/libraries/Common/tests/System/Net/Http/Http2LoopbackConnec…
AnudeepGunukula Nov 23, 2021
62bc2bb
removed async keyword
AnudeepGunukula Nov 23, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/libraries/Common/tests/System/Net/Http/GenericLoopbackServ…
…er.cs

Co-authored-by: Karel Zikmund <[email protected]>
AnudeepGunukula and karelz authored Sep 7, 2021
commit ff6c249c0c0a583a9669ab97e26f57b4f561936a
Original file line number Diff line number Diff line change
@@ -137,7 +137,7 @@ public abstract class GenericLoopbackConnection : IDisposable
public abstract Task WaitForCancellationAsync(bool ignoreIncomingData = true);

/// <summary>Helper function to make it easier to convert old test with strings.</summary>
public async Task SendResponseBodyAsync(string content, bool isFinal = true, int requestId = 0)
public async Task SendResponseBodyAsync(string content, bool isFinal = true)
{
await SendResponseBodyAsync(String.IsNullOrEmpty(content) ? new byte[0] : Encoding.ASCII.GetBytes(content), isFinal, requestId);
}