Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Utility /commands /utility /GetRandomCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Management.Automation; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// This class implements `Get-Random` cmdlet. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public sealed class GetRandomCommand : GetRandomCommandBase | |
| { | |
| /// <summary> | |
| /// Seed used to reinitialize random numbers generator. | |
| /// </summary> | |
| [] | |
| [] | |
| public int? SetSeed { get; set; } | |
| /// <summary> | |
| /// This method implements the BeginProcessing method for get-random command. | |
| /// </summary> | |
| protected override void BeginProcessing() | |
| { | |
| if (SetSeed.HasValue) | |
| { | |
| Generator = new PolymorphicRandomNumberGenerator(SetSeed.Value); | |
| } | |
| base.BeginProcessing(); | |
| } | |
| } | |
| } | |