Skip to content

Commit 524c35b

Browse files
authored
Fix FromBase64Transform.CanTransformMultipleBlocks to not say "always false". (#11511)
1 parent eb5c65c commit 524c35b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

xml/System.Security.Cryptography/FromBase64Transform.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,12 +290,14 @@
290290
</ReturnValue>
291291
<Docs>
292292
<summary>Gets a value that indicates whether multiple blocks can be transformed.</summary>
293-
<value>Always <see langword="false" />.</value>
293+
<value>A value that indicates whether multiple blocks can be transformed.</value>
294294
<remarks>
295295
<format type="text/markdown"><![CDATA[
296296
297297
## Remarks
298-
In the current implementation, only one block can be transformed at a time, so this property is always `false`.
298+
Prior to .NET 5, only one block can be transformed at a time, so this property returns `false`.
299+
300+
Starting in .NET 5, multiple blocks can be transformed, so this property returns `true`.
299301
300302
]]></format>
301303
</remarks>

0 commit comments

Comments
 (0)