8000 Fix FromBase64Transform.CanTransformMultipleBlocks to not say "always false". by vcsjones · Pull Request #11511 · dotnet/dotnet-api-docs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix FromBase64Transform.CanTransformMultipleBlocks to not say "always false". #11511

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

Merged
merged 1 commit into from
Jun 25, 2025
Merged
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
6 changes: 4 additions & 2 deletions xml/System.Security.Cryptography/FromBase64Transform.xml
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,14 @@
</ReturnValue>
<Docs>
<summary>Gets a value that indicates whether multiple blocks can be transformed.</summary>
<value>Always <see langword="false" />.</value>
<value>A value that indicates whether multiple blocks can be transformed.</value>
<remarks>
<format type="text/markdown"><![CDATA[

## Remarks
In the current implementation, only one block can be transformed at a time, so this property is always `false`.
Prior to .NET 5, only one block can be transformed at a time, so this property returns `false`.

Starting in .NET 5, multiple blocks can be transformed, so this property returns `true`.

]]></format>
</remarks>
Expand Down
0