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

Fix incorrect documentation for ReadEntityStateAsync() #1637

Merged
merged 2 commits into from
Jan 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## New Features

## Bug fixes
- Remove incorrect information from C# docs summary for IDurableEntityClient.ReadEntityStateAsync() regarding states large than 16KB (#1637)

## Breaking changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ public interface IDurableEntityClient
Task SignalEntityAsync<TEntityInterface>(EntityId entityId, DateTime scheduledTimeUtc, Action<TEntityInterface> operation);

/// <summary>
/// Tries to read the current state of an entity. Returns default(<typeparamref name="T"/>) if the entity does not
/// exist, or if the JSON-serialized state of the entity is larger than 16KB.
/// Tries to read the current state of an entity. Returns default(<typeparamref name="T"/>) if the entity does not exist.
/// </summary>
/// <typeparam name="T">The JSON-serializable type of the entity.</typeparam>
/// <param name="entityId">The target entity.</param>
Expand Down