Skip to content

Commit 5aa3f73

Browse files
authored
[DO NOT MERGE] Add remark to ICryptoTransform.TransformBlock (dotnet#2096)
Add remark to ICryptoTransform.TransformBlock
1 parent ea2e372 commit 5aa3f73

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

xml/System.Security.Cryptography/ICryptoTransform.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,14 @@
183183
<param name="outputOffset">The offset into the output byte array from which to begin writing data.</param>
184184
<summary>Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array.</summary>
185185
<returns>The number of bytes written.</returns>
186-
<remarks>To be added.</remarks>
186+
<remarks>
187+
<format type="text/markdown"><![CDATA[
188+
189+
## Remarks
190+
The return value of <xref:System.Security.Cryptography.ICryptoTransform.TransformBlock%2A> is the number of bytes returned to `outputBuffer` and is always less than or equal to <xref:System.Security.Cryptography.ICryptoTransform.OutputBlockSize>. If <xref:System.Security.Cryptography.ICryptoTransform.CanTransformMultipleBlocks> is `true`, then `inputCount` must be any positive multiple of <xref:System.Security.Cryptography.ICryptoTransform.InputBlockSize>.
191+
192+
]]></format>
193+
</remarks>
187194
</Docs>
188195
</Member>
189196
<Member MemberName="TransformFinalBlock">

0 commit comments

Comments
 (0)