/********************************************************************++ Copyright (c) Microsoft Corporation. All rights reserved. --********************************************************************/ using Dbg = System.Management.Automation.Diagnostics; namespace System.Management.Automation.Remoting { /// /// Class that encapsulates the information carried by the RunspaceInitInfo PSRP message /// internal class RunspacePoolInitInfo { /// /// Min Runspaces setting on the server runspace pool /// internal int MinRunspaces { get; } /// /// Max Runspaces setting on the server runspace pool /// internal int MaxRunspaces { get; } /// /// Constructor /// /// /// internal RunspacePoolInitInfo(int minRS, int maxRS) { MinRunspaces = minRS; MaxRunspaces = maxRS; } } }