File tree Expand file tree Collapse file tree
dotnet/src/webdriver/DevTools Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public async Task SetUserAgentOverride(string userAgent)
140140 public abstract Task AddResponseBody ( HttpResponseData responseData ) ;
141141
142142 /// <summary>
143- /// Asynchronously contines an intercepted network response without modification.
143+ /// Asynchronously continues an intercepted network response without modification.
144144 /// </summary>
145145 /// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
146146 /// <returns>A task that represents the asynchronous operation.</returns>
Original file line number Diff line number Diff line change @@ -257,13 +257,13 @@ public override async Task AddResponseBody(HttpResponseData responseData)
257257 }
258258
259259 /// <summary>
260- /// Asynchronously contines an intercepted network response without modification.
260+ /// Asynchronously continues an intercepted network response without modification.
261261 /// </summary>
262262 /// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
263263 /// <returns>A task that represents the asynchronous operation.</returns>
264264 public override async Task ContinueResponseWithoutModification ( HttpResponseData responseData )
265265 {
266- await fetch . ContinueRequest ( new ContinueRequestCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
266+ await fetch . ContinueResponse ( new ContinueResponseCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
267267 }
268268
269269 private void OnFetchAuthRequired ( object sender , Fetch . AuthRequiredEventArgs e )
Original file line number Diff line number Diff line change @@ -257,13 +257,13 @@ public override async Task AddResponseBody(HttpResponseData responseData)
257257 }
258258
259259 /// <summary>
260- /// Asynchronously contines an intercepted network response without modification.
260+ /// Asynchronously continues an intercepted network response without modification.
261261 /// </summary>
262262 /// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
263263 /// <returns>A task that represents the asynchronous operation.</returns>
264264 public override async Task ContinueResponseWithoutModification ( HttpResponseData responseData )
265265 {
266- await fetch . ContinueRequest ( new ContinueRequestCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
266+ await fetch . ContinueResponse ( new ContinueResponseCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
267267 }
268268
269269 private void OnFetchAuthRequired ( object sender , Fetch . AuthRequiredEventArgs e )
Original file line number Diff line number Diff line change @@ -260,13 +260,13 @@ public override async Task AddResponseBody(HttpResponseData responseData)
260260 }
261261
262262 /// <summary>
263- /// Asynchronously contines an intercepted network response without modification.
263+ /// Asynchronously continues an intercepted network response without modification.
264264 /// </summary>
265265 /// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
266266 /// <returns>A task that represents the asynchronous operation.</returns>
267267 public override async Task ContinueResponseWithoutModification ( HttpResponseData responseData )
268268 {
269- await fetch . ContinueRequest ( new ContinueRequestCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
269+ await fetch . ContinueResponse ( new ContinueResponseCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
270270 }
271271
272272 private void OnFetchAuthRequired ( object sender , Fetch . AuthRequiredEventArgs e )
You can’t perform that action at this time.
0 commit comments