1
- // <copyright file="V116Network .cs" company="WebDriver Committers">
1
+ // <copyright file="V119Network .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
20
20
using System . Collections . Generic ;
21
21
using System . Text ;
22
22
using System . Threading . Tasks ;
23
- using OpenQA . Selenium . DevTools . V116 . Fetch ;
24
- using OpenQA . Selenium . DevTools . V116 . Network ;
23
+ using OpenQA . Selenium . DevTools . V119 . Fetch ;
24
+ using OpenQA . Selenium . DevTools . V119 . Network ;
25
25
26
- namespace OpenQA . Selenium . DevTools . V116
26
+ namespace OpenQA . Selenium . DevTools . V119
27
27
{
28
28
/// <summary>
29
- /// Class providing functionality for manipulating network calls using version 116 of the DevTools Protocol
29
+ /// Class providing functionality for manipulating network calls using version 119 of the DevTools Protocol
30
30
/// </summary>
31
- public class V116Network : DevTools . Network
31
+ public class V119Network : DevTools . Network
32
32
{
33
33
private FetchAdapter fetch ;
34
34
private NetworkAdapter network ;
35
35
36
36
/// <summary>
37
- /// Initializes a new instance of the <see cref="V116Network "/> class.
37
+ /// Initializes a new instance of the <see cref="V119Network "/> class.
38
38
/// </summary>
39
39
/// <param name="network">The adapter for the Network domain.</param>
40
40
/// <param name="fetch">The adapter for the Fetch domain.</param>
41
- public V116Network ( NetworkAdapter network , FetchAdapter fetch )
41
+ public V119Network ( NetworkAdapter network , FetchAdapter fetch )
42
42
{
43
43
this . network = network ;
44
44
this . fetch = fetch ;
@@ -216,9 +216,9 @@ public override async Task ContinueWithAuth(string requestId, string userName, s
216
216
await fetch . ContinueWithAuth ( new ContinueWithAuthCommandSettings ( )
217
217
{
218
218
RequestId = requestId ,
219
- AuthChallengeResponse = new V116 . Fetch . AuthChallengeResponse ( )
219
+ AuthChallengeResponse = new V119 . Fetch . AuthChallengeResponse ( )
220
220
{
221
- Response = V116 . Fetch . AuthChallengeResponseResponseValues . ProvideCredentials ,
221
+ Response = V119 . Fetch . AuthChallengeResponseResponseValues . ProvideCredentials ,
222
222
Username = userName ,
223
223
Password = password
224
224
}
@@ -235,9 +235,9 @@ public override async Task CancelAuth(string requestId)
235
235
await fetch . ContinueWithAuth ( new ContinueWithAuthCommandSettings ( )
236
236
{
237
237
RequestId = requestId ,
238
- AuthChallengeResponse = new OpenQA . Selenium . DevTools . V116 . Fetch . AuthChallengeResponse ( )
238
+ AuthChallengeResponse = new OpenQA . Selenium . DevTools . V119 . Fetch . AuthChallengeResponse ( )
239
239
{
240
- Response = V116 . Fetch . AuthChallengeResponseResponseValues . CancelAuth
240
+ Response = V119 . Fetch . AuthChallengeResponseResponseValues . CancelAuth
241
241
}
242
242
} ) . ConfigureAwait ( false ) ;
243
243
}
0 commit comments