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 81ea5e0 commit fda2c56Copy full SHA for fda2c56
1 file changed
dotnet/src/webdriver/BiDi/Module.cs
@@ -40,7 +40,7 @@ protected Task<Subscription> SubscribeAsync<TEventArgs>(string eventName, Action
40
return Broker.SubscribeAsync(eventName, eventHandler, options, jsonTypeInfo, cancellationToken);
41
}
42
43
- public Task<Subscription> SubscribeAsync<TEventArgs>(string eventName, Func<TEventArgs, Task> func, SubscriptionOptions? options, JsonTypeInfo<TEventArgs> jsonTypeInfo, CancellationToken cancellationToken)
+ protected Task<Subscription> SubscribeAsync<TEventArgs>(string eventName, Func<TEventArgs, Task> func, SubscriptionOptions? options, JsonTypeInfo<TEventArgs> jsonTypeInfo, CancellationToken cancellationToken)
44
where TEventArgs : EventArgs
45
{
46
var eventHandler = new AsyncEventHandler<TEventArgs>(eventName, func);
0 commit comments