We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e0e1a commit 3b78cfeCopy full SHA for 3b78cfe
dotnet/src/webdriver/BiDi/Network/Intercept.cs
@@ -36,9 +36,9 @@ internal Intercept(BiDi bidi, string id)
36
37
internal string Id { get; }
38
39
- protected IList<Subscription> OnBeforeRequestSentSubscriptions { get; } = [];
40
- protected IList<Subscription> OnResponseStartedSubscriptions { get; } = [];
41
- protected IList<Subscription> OnAuthRequiredSubscriptions { get; } = [];
+ IList<Subscription> OnBeforeRequestSentSubscriptions { get; } = [];
+ IList<Subscription> OnResponseStartedSubscriptions { get; } = [];
+ IList<Subscription> OnAuthRequiredSubscriptions { get; } = [];
42
43
public async Task RemoveAsync()
44
{
0 commit comments