1- // <copyright file="V116Network .cs" company="WebDriver Committers">
1+ // <copyright file="V119Network .cs" company="WebDriver Committers">
22// Licensed to the Software Freedom Conservancy (SFC) under one
33// or more contributor license agreements. See the NOTICE file
44// distributed with this work for additional information
2020using System . Collections . Generic ;
2121using System . Text ;
2222using 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 ;
2525
26- namespace OpenQA . Selenium . DevTools . V116
26+ namespace OpenQA . Selenium . DevTools . V119
2727{
2828 /// <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
3030 /// </summary>
31- public class V116Network : DevTools . Network
31+ public class V119Network : DevTools . Network
3232 {
3333 private FetchAdapter fetch ;
3434 private NetworkAdapter network ;
3535
3636 /// <summary>
37- /// Initializes a new instance of the <see cref="V116Network "/> class.
37+ /// Initializes a new instance of the <see cref="V119Network "/> class.
3838 /// </summary>
3939 /// <param name="network">The adapter for the Network domain.</param>
4040 /// <param name="fetch">The adapter for the Fetch domain.</param>
41- public V116Network ( NetworkAdapter network , FetchAdapter fetch )
41+ public V119Network ( NetworkAdapter network , FetchAdapter fetch )
4242 {
4343 this . network = network ;
4444 this . fetch = fetch ;
@@ -216,9 +216,9 @@ public override async Task ContinueWithAuth(string requestId, string userName, s
216216 await fetch . ContinueWithAuth ( new ContinueWithAuthCommandSettings ( )
217217 {
218218 RequestId = requestId ,
219- AuthChallengeResponse = new V116 . Fetch . AuthChallengeResponse ( )
219+ AuthChallengeResponse = new V119 . Fetch . AuthChallengeResponse ( )
220220 {
221- Response = V116 . Fetch . AuthChallengeResponseResponseValues . ProvideCredentials ,
221+ Response = V119 . Fetch . AuthChallengeResponseResponseValues . ProvideCredentials ,
222222 Username = userName ,
223223 Password = password
224224 }
@@ -235,9 +235,9 @@ public override async Task CancelAuth(string requestId)
235235 await fetch . ContinueWithAuth ( new ContinueWithAuthCommandSettings ( )
236236 {
237237 RequestId = requestId ,
238- AuthChallengeResponse = new OpenQA . Selenium . DevTools . V116 . Fetch . AuthChallengeResponse ( )
238+ AuthChallengeResponse = new OpenQA . Selenium . DevTools . V119 . Fetch . AuthChallengeResponse ( )
239239 {
240- Response = V116 . Fetch . AuthChallengeResponseResponseValues . CancelAuth
240+ Response = V119 . Fetch . AuthChallengeResponseResponseValues . CancelAuth
241241 }
242242 } ) . ConfigureAwait ( false ) ;
243243 }
0 commit comments