/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
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();
}
}
}