Goose.Core.Action.PowerShell.Host.GoosePSHost.GoosePSHost C# (CSharp) Method

GoosePSHost() public method

public GoosePSHost ( ) : System
return System
        public GoosePSHost()
        {
            this.culture = System.Threading.Thread.CurrentThread.CurrentCulture;
            this.uiCulture = System.Threading.Thread.CurrentThread.CurrentUICulture;
            this.instanceId = Guid.NewGuid();
            this.Output = new List<string>();
            this.Error = new List<string>();
            this.Other = new List<string>();

            this.ui = new GoosePSHostUserInterface(this.Output, this.Other, this.Error, this.Other, this.Other);
        }