// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Dbg = System.Management.Automation.Diagnostics;
using DWORD = System.UInt32;
namespace System.Management.Automation.Runspaces
{
///
/// Runspace class for local runspace.
///
internal sealed partial
class LocalRunspace : RunspaceBase
{
///
/// Initialize default values of preference vars.
///
/// Does not return a value.
private void InitializeDefaults()
{
SessionStateInternal ss = _engine.Context.EngineSessionState;
Dbg.Assert(ss != null, "SessionState should not be null");
// Add the variables that must always be there...
ss.InitializeFixedVariables();
}
}
}