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 parameter references in ToBase64Transform #10412

Merged
merged 1 commit into from
Sep 19, 2024
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
8 changes: 4 additions & 4 deletions xml/System.Security.Cryptography/ToBase64Transform.xml
Original file line number Diff line number Diff line change
Expand Up @@ -732,13 +732,13 @@ For more information about `Dispose` and `Finalize`, see [Cleaning Up Unmanaged
</remarks>
<exception cref="T:System.ObjectDisposedException">The current <see cref="T:System.Security.Cryptography.ToBase64Transform" /> object has already been disposed.</exception>
<exception cref="T:System.Security.Cryptography.CryptographicException">The data size is not valid.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="inputBuffer" /> parameter contains an invalid offset length.
<exception cref="T:System.ArgumentException">The <paramref name="inputOffset" /> parameter contains an invalid offset length.

-or-

The <paramref name="inputCount" /> parameter contains an invalid value.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="inputBuffer" /> parameter is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="inputBuffer" /> parameter requires a non-negative number.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="inputCount" /> parameter requires a non-negative number and less than or equal to the length of <paramref name="inputBuffer"/>.</exception>
<related type="Article" href="/dotnet/standard/security/cryptographic-services">Cryptographic Services</related>
</Docs>
</Member>
Expand Down Expand Up @@ -812,13 +812,13 @@ For more information about `Dispose` and `Finalize`, see [Cleaning Up Unmanaged
]]></format>
</remarks>
<exception cref="T:System.ObjectDisposedException">The current <see cref="T:System.Security.Cryptography.ToBase64Transform" /> object has already been disposed.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="inputBuffer" /> parameter contains an invalid offset length.
<exception cref="T:System.ArgumentException">The <paramref name="inputOffset" /> parameter contains an invalid offset length.

-or-

The <paramref name="inputCount" /> parameter contains an invalid value.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="inputBuffer" /> parameter is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="inputBuffer" /> parameter requires a non-negative number.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="inputCount" /> parameter requires a non-negative number and less than or equal to the length of <paramref name="inputBuffer"/>.</exception>
<related type="Article" href="/dotnet/standard/security/cryptographic-services">Cryptographic Services</related>
</Docs>
</Member>
Expand Down