This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
| $random = [System.Security.Cryptography.RandomNumberGenerator]::Create(); | |
| $buffer = New-Object byte[] 32; | |
| $random.GetBytes($buffer); | |
| [BitConverter]::ToString($buffer).Replace("-", [string]::Empty); |
This document now exists on the official ASP.NET core docs page.