Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Utility /commands /utility /GetSecureRandomCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Management.Automation; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// This class implements `Get-SecureRandom` cmdlet. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public sealed class GetSecureRandomCommand : GetRandomCommandBase | |
| { | |
| // nothing unique from base class | |
| } | |
| } | |