// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Management.Automation; namespace Microsoft.PowerShell.Commands { /// /// This class implements `Get-Random` cmdlet. /// [Cmdlet(VerbsCommon.Get, "Random", DefaultParameterSetName = GetRandomCommandBase.RandomNumberParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097016", RemotingCapability = RemotingCapability.None)] [OutputType(typeof(int), typeof(long), typeof(double))] public sealed class GetRandomCommand : GetRandomCommandBase { /// /// Seed used to reinitialize random numbers generator. /// [Parameter] [ValidateNotNull] public int? SetSeed { get; set; } /// /// This method implements the BeginProcessing method for get-random command. /// protected override void BeginProcessing() { if (SetSeed.HasValue) { Generator = new PolymorphicRandomNumberGenerator(SetSeed.Value); } base.BeginProcessing(); } } }