You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'd like to add a timeout to GetHTML using a CancellationTokenSource. However, this method does not take a CancellationToken.
Describe the solution you'd like
An overload for GetHTML and other async methods which takes a cancellationToken parameter and passes it to jsRuntime.InvokeAsync.
Describe alternatives you've considered
Due to requiring a reference to the private field QuillElement, I'm currently forced to use reflection to get this reference, and manually call jsRuntime.InvokeAsync.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I'd like to add a timeout to
GetHTML
using aCancellationTokenSource
. However, this method does not take aCancellationToken
.Describe the solution you'd like
An overload for
GetHTML
and other async methods which takes a cancellationToken parameter and passes it tojsRuntime.InvokeAsync
.Describe alternatives you've considered
Due to requiring a reference to the private field
QuillElement
, I'm currently forced to use reflection to get this reference, and manually calljsRuntime.InvokeAsync
.The text was updated successfully, but these errors were encountered: