Skip to content
New issue

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

Stop Serializing Return Values for InvokeVoidAsync #35807

Merged
merged 14 commits into from
Aug 31, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "Remove IJSVoidResult from the public API"
This reverts commit e754872.
  • Loading branch information
TanayParikh committed Aug 27, 2021
commit fdc5d19d69d81e08597cb9c2dc18491a3d26bc93
2 changes: 1 addition & 1 deletion src/JSInterop/Microsoft.JSInterop/src/IJSVoidResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Microsoft.JSInterop
/// <summary>
/// Represents a void result from a JavaScript call.
TanayParikh marked this conversation as resolved.
Show resolved Hide resolved
/// </summary>
internal interface IJSVoidResult
public interface IJSVoidResult
pranavkm marked this conversation as resolved.
Show resolved Hide resolved
TanayParikh marked this conversation as resolved.
Show resolved Hide resolved
{
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#nullable enable
Microsoft.JSInterop.IJSVoidResult
Microsoft.JSInterop.IJSStreamReference
Microsoft.JSInterop.IJSStreamReference.Length.get -> long
Microsoft.JSInterop.IJSStreamReference.OpenReadStreamAsync(long maxAllowedSize = 512000, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<System.IO.Stream!>
Expand Down