Skip to content

Commit 04431af

Browse files
authored
chore: address some net8.0 warnings (#2894)
1 parent d20b160 commit 04431af

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

src/Playwright/Core/BrowserContext.cs

+7-7
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ internal class BrowserContext : ChannelOwner, IBrowserContext
4545
private readonly BrowserContextInitializer _initializer;
4646
private readonly Tracing _tracing;
4747
internal readonly IAPIRequestContext _request;
48-
private readonly IDictionary<string, HarRecorder> _harRecorders = new Dictionary<string, HarRecorder>();
48+
private readonly Dictionary<string, HarRecorder> _harRecorders = new();
4949
internal readonly List<IWorker> _serviceWorkers = new();
5050
private List<RouteHandler> _routes = new();
5151
internal readonly List<Page> _pages = new();
@@ -737,12 +737,12 @@ private async Task UnrouteInternalAsync(List<RouteHandler> removed, List<RouteHa
737737
await Task.WhenAll(tasks).ConfigureAwait(false);
738738
}
739739

740-
private Task UpdateInterceptionAsync()
740+
private async Task UpdateInterceptionAsync()
741741
{
742742
var patterns = RouteHandler.PrepareInterceptionPatterns(_routes);
743-
return SendMessageToServerAsync(
743+
await SendMessageToServerAsync(
744744
"setNetworkInterceptionPatterns",
745-
patterns);
745+
patterns).ConfigureAwait(false);
746746
}
747747

748748
internal void OnClose()
@@ -779,7 +779,7 @@ private void Channel_BindingCall(BindingCall bindingCall)
779779

780780
private void Channel_Route(object sender, Route route) => _ = OnRouteAsync(route).ConfigureAwait(false);
781781

782-
private Task ExposeBindingAsync(string name, Delegate callback, bool handle = false)
782+
private async Task ExposeBindingAsync(string name, Delegate callback, bool handle = false)
783783
{
784784
foreach (var page in _pages)
785785
{
@@ -796,13 +796,13 @@ private Task ExposeBindingAsync(string name, Delegate callback, bool handle = fa
796796

797797
_bindings.Add(name, callback);
798798

799-
return SendMessageToServerAsync(
799+
await SendMessageToServerAsync(
800800
"exposeBinding",
801801
new Dictionary<string, object>
802802
{
803803
["name"] = name,
804804
["needsHandle"] = handle,
805-
});
805+
}).ConfigureAwait(false);
806806
}
807807

808808
private HarContentPolicy? RouteFromHarUpdateContentPolicyToHarContentPolicy(RouteFromHarUpdateContentPolicy? policy)

src/Playwright/Core/FormData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public FormData()
3737

3838
internal Dictionary<string, object> Values { get; }
3939

40-
private IFormData SetImpl(string name, object value)
40+
private FormData SetImpl(string name, object value)
4141
{
4242
Values.Add(name, value);
4343
return this;

src/Playwright/Core/Frame.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -528,9 +528,9 @@ public async Task SetInputFilesAsync(string selector, IEnumerable<FilePayload> f
528528
await _setInputFilesAsync(selector, converted, noWaitAfter: options?.NoWaitAfter, timeout: options?.Timeout, options?.Strict).ConfigureAwait(false);
529529
}
530530

531-
private Task _setInputFilesAsync(string selector, SetInputFilesFiles files, bool? noWaitAfter, float? timeout, bool? strict)
531+
private async Task _setInputFilesAsync(string selector, SetInputFilesFiles files, bool? noWaitAfter, float? timeout, bool? strict)
532532
{
533-
return SendMessageToServerAsync("setInputFiles", new Dictionary<string, object>
533+
await SendMessageToServerAsync("setInputFiles", new Dictionary<string, object>
534534
{
535535
["selector"] = selector,
536536
["payloads"] = files.Payloads,
@@ -539,7 +539,7 @@ private Task _setInputFilesAsync(string selector, SetInputFilesFiles files, bool
539539
["noWaitAfter"] = noWaitAfter,
540540
["timeout"] = timeout,
541541
["strict"] = strict,
542-
});
542+
}).ConfigureAwait(false);
543543
}
544544

545545
[MethodImpl(MethodImplOptions.NoInlining)]

src/Playwright/Core/Page.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1266,10 +1266,10 @@ private async Task UnrouteInternalAsync(List<RouteHandler> removed, List<RouteHa
12661266
await Task.WhenAll(tasks).ConfigureAwait(false);
12671267
}
12681268

1269-
private Task UpdateInterceptionAsync()
1269+
private async Task UpdateInterceptionAsync()
12701270
{
12711271
var patterns = RouteHandler.PrepareInterceptionPatterns(_routes);
1272-
return SendMessageToServerAsync("setNetworkInterceptionPatterns", patterns);
1272+
await SendMessageToServerAsync("setNetworkInterceptionPatterns", patterns).ConfigureAwait(false);
12731273
}
12741274

12751275
internal void OnClose()
@@ -1352,7 +1352,7 @@ private void Channel_FrameAttached(object sender, IFrame args)
13521352
FrameAttached?.Invoke(this, args);
13531353
}
13541354

1355-
private Task InnerExposeBindingAsync(string name, Delegate callback, bool handle = false)
1355+
private async Task InnerExposeBindingAsync(string name, Delegate callback, bool handle = false)
13561356
{
13571357
if (Bindings.ContainsKey(name))
13581358
{
@@ -1361,13 +1361,13 @@ private Task InnerExposeBindingAsync(string name, Delegate callback, bool handle
13611361

13621362
Bindings.Add(name, callback);
13631363

1364-
return SendMessageToServerAsync(
1364+
await SendMessageToServerAsync(
13651365
"exposeBinding",
13661366
new Dictionary<string, object>
13671367
{
13681368
["name"] = name,
13691369
["needsHandle"] = handle,
1370-
});
1370+
}).ConfigureAwait(false);
13711371
}
13721372

13731373
private Video ForceVideo() => _video ??= new(this, _connection);

src/Playwright/Helpers/SetInputFilesHelpers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public static async Task<SetInputFilesFiles> ConvertInputFilesAsync(IEnumerable<
6363
}).ConfigureAwait(false);
6464
return new() { Streams = streams.ToArray() };
6565
}
66-
return new() { LocalPaths = files.Select(f => Path.GetFullPath(f)).ToArray() };
66+
return new() { LocalPaths = files.Select(Path.GetFullPath).ToArray() };
6767
}
6868

6969
public static SetInputFilesFiles ConvertInputFiles(IEnumerable<FilePayload> files)

src/Playwright/Helpers/StringExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ internal static class StringExtensions
3737
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions#escaping
3838
private static readonly char[] _escapeGlobChars = new[] { '$', '^', '+', '.', '*', '(', ')', '|', '\\', '?', '{', '}', '[', ']' };
3939

40-
private static readonly IDictionary<string, string> _mappings = new Dictionary<string, string>(StringComparer.InvariantCultureIgnoreCase)
40+
private static readonly Dictionary<string, string> _mappings = new Dictionary<string, string>(StringComparer.InvariantCultureIgnoreCase)
4141
{
4242
{ ".323", "text/h323" },
4343
{ ".3g2", "video/3gpp2" },

src/Playwright/Transport/Converters/EvaluateArgumentValueConverter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ private static object ParseEvaluateResultToExpando(JsonElement result, IDictiona
365365

366366
if (result.TryGetProperty("a", out var array))
367367
{
368-
IList<object> list = new List<object>();
368+
List<object> list = new List<object>();
369369
refs.Add(result.GetProperty("id").GetInt32(), list);
370370
foreach (var item in array.EnumerateArray())
371371
{

0 commit comments

Comments
 (0)