Skip to content

Commit ba366c5

Browse files
authored
Updating docs
Needs to be indicated that it is in hexadecimal base16
1 parent 0ac27ac commit ba366c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aspnetcore/host-and-deploy/iis/advanced.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This article covers advanced configuration options and scenarios for the ASP.NET
1818

1919
*Only applies when using the in-process hosting model.*
2020

21-
Configure the managed stack size using the `stackSize` setting in bytes in the `web.config` file. The default size is 1,048,576 bytes (1 MB). The following example changes the stack size to 2 MB (2,097,152 bytes):
21+
Configure the managed stack size using the `stackSize` setting in bytes in hexadecimal in the `web.config` file. The default size is 1,048,576 bytes (1 MB) expressed in hexadecimal. The following example changes the stack size to 2 MB (2,097,152 bytes) in hexadecimal 0x200000:
2222

2323
```xml
2424
<aspNetCore processPath="dotnet"
@@ -27,7 +27,7 @@ Configure the managed stack size using the `stackSize` setting in bytes in the `
2727
stdoutLogFile="\\?\%home%\LogFiles\stdout"
2828
hostingModel="inprocess">
2929
<handlerSettings>
30-
<handlerSetting name="stackSize" value="2097152" />
30+
<handlerSetting name="stackSize" value="200000" />
3131
</handlerSettings>
3232
</aspNetCore>
3333
```

0 commit comments

Comments
 (0)