Skip to content

Commit ce36520

Browse files
wtgodbeThraka
authored andcommitted
Add documentation for System.Diagnostics.ProcessStartInfo.StandardInputEncoding (#3227)
* Add documentation for System.Diagnostics.ProcessStartInfo.StandardInputEncoding * remove attributes * formatting change
1 parent 78d2d11 commit ce36520

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

xml/System.Diagnostics/ProcessStartInfo.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,9 +1341,16 @@ You can use asynchronous read operations to avoid these dependencies and their d
13411341
<ReturnType>System.Text.Encoding</ReturnType>
13421342
</ReturnValue>
13431343
<Docs>
1344-
<summary>To be added.</summary>
1345-
<value>To be added.</value>
1346-
<remarks>To be added.</remarks>
1344+
<summary>Gets or sets the preferred encoding for standard input.</summary>
1345+
<value>An object that represents the preferred encoding for standard input. The default is <see langword="null" />.</value>
1346+
<remarks>
1347+
<format type="text/markdown"><![CDATA[
1348+
1349+
## Remarks
1350+
If the value of the `StandardInputEncoding` property is `null`, the process uses the default standard input encoding for the standard input. The `StandardInputEncoding` property must be set before the process is started. Setting this property does not guarantee that the process will use the specified encoding. The application should be tested to determine which encodings the process supports.
1351+
1352+
]]></format>
1353+
</remarks>
13471354
</Docs>
13481355
</Member>
13491356
<Member MemberName="StandardOutputEncoding">

0 commit comments

Comments
 (0)