/// <summary>
 /// Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.
 /// </summary>
 /// <param name="request">The HTTP request message to send to the server.</param>
 /// <param name="cancellationToken">A cancellation token to cancel operation.</param>
 /// <returns>
 /// Returns <see cref="T:System.Threading.Tasks.Task`1" />. The task object representing the asynchronous operation.
 /// </returns>
 // ReSharper disable ExplicitCallerInfoArgument
 protected override Task <HttpResponseMessage> SendAsync(
     HttpRequestMessage request,
     CancellationToken cancellationToken)
 => _cassette.RecordAsync(request, base.SendAsync, _options, cancellationToken, _callerFilePath, _callerMemberName, _callerLineNumber);