File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
dotnet/src/webdriver/DevTools Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public async Task SetUserAgentOverride(string userAgent)
140
140
public abstract Task AddResponseBody ( HttpResponseData responseData ) ;
141
141
142
142
/// <summary>
143
- /// Asynchronously contines an intercepted network response without modification.
143
+ /// Asynchronously continues an intercepted network response without modification.
144
144
/// </summary>
145
145
/// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
146
146
/// <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)
257
257
}
258
258
259
259
/// <summary>
260
- /// Asynchronously contines an intercepted network response without modification.
260
+ /// Asynchronously continues an intercepted network response without modification.
261
261
/// </summary>
262
262
/// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
263
263
/// <returns>A task that represents the asynchronous operation.</returns>
264
264
public override async Task ContinueResponseWithoutModification ( HttpResponseData responseData )
265
265
{
266
- await fetch . ContinueRequest ( new ContinueRequestCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
266
+ await fetch . ContinueResponse ( new ContinueResponseCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
267
267
}
268
268
269
269
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)
257
257
}
258
258
259
259
/// <summary>
260
- /// Asynchronously contines an intercepted network response without modification.
260
+ /// Asynchronously continues an intercepted network response without modification.
261
261
/// </summary>
262
262
/// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
263
263
/// <returns>A task that represents the asynchronous operation.</returns>
264
264
public override async Task ContinueResponseWithoutModification ( HttpResponseData responseData )
265
265
{
266
- await fetch . ContinueRequest ( new ContinueRequestCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
266
+ await fetch . ContinueResponse ( new ContinueResponseCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
267
267
}
268
268
269
269
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)
260
260
}
261
261
262
262
/// <summary>
263
- /// Asynchronously contines an intercepted network response without modification.
263
+ /// Asynchronously continues an intercepted network response without modification.
264
264
/// </summary>
265
265
/// <param name="responseData">The <see cref="HttpResponseData"/> of the network response.</param>
266
266
/// <returns>A task that represents the asynchronous operation.</returns>
267
267
public override async Task ContinueResponseWithoutModification ( HttpResponseData responseData )
268
268
{
269
- await fetch . ContinueRequest ( new ContinueRequestCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
269
+ await fetch . ContinueResponse ( new ContinueResponseCommandSettings ( ) { RequestId = responseData . RequestId } ) ;
270
270
}
271
271
272
272
private void OnFetchAuthRequired ( object sender , Fetch . AuthRequiredEventArgs e )
You can’t perform that action at this time.
0 commit comments