We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BiDi spec: https://w3c.github.io/webdriver-bidi/#command-network-continueWithAuth
network.ContinueWithAuth = ( method: "network.continueWithAuth", params: network.ContinueWithAuthParameters ) network.ContinueWithAuthParameters = { request: network.Request, (network.ContinueWithAuthCredentials // network.ContinueWithAuthNoCredentials) } network.ContinueWithAuthCredentials = ( action: "provideCredentials", credentials: network.AuthCredentials ) network.ContinueWithAuthNoCredentials = ( action: "default" / "cancel" )
We can apply method overload here! The example is: #15533. It is good interpretation of CDDL to .NET.
User will call one method ContinueWithAuthAsync(...) as spec defines it, but with options how to proceed further.
ContinueWithAuthAsync(...)
The text was updated successfully, but these errors were encountered:
New pattern determined:
network.ContinueWithAuthParameters = { request: network.Request, (network.ContinueWithAuthCredentials // network.ContinueWithAuthNoCredentials) }
Meaning in .NET world it is method overload.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Feature and motivation
BiDi spec: https://w3c.github.io/webdriver-bidi/#command-network-continueWithAuth
We can apply method overload here! The example is: #15533. It is good interpretation of CDDL to .NET.
Usage example
User will call one method
ContinueWithAuthAsync(...)
as spec defines it, but with options how to proceed further.The text was updated successfully, but these errors were encountered: