mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 01:37:59 +02:00
Moving corlib files out of "System" directory into root
This commit is contained in:
parent
4cd58262e4
commit
7dbfd15292
179 changed files with 3 additions and 0 deletions
83
BeefLibs/corlib/src/Diagnostics/ProcessStartInfo.bf
Normal file
83
BeefLibs/corlib/src/Diagnostics/ProcessStartInfo.bf
Normal file
|
@ -0,0 +1,83 @@
|
|||
using System.Text;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace System.Diagnostics
|
||||
{
|
||||
class ProcessStartInfo
|
||||
{
|
||||
bool mUseShellExecute = true;
|
||||
bool mRedirectStandardInput = false;
|
||||
bool mRedirectStandardOutput = false;
|
||||
bool mRedirectStandardError = false;
|
||||
bool mCreateNoWindow = false;
|
||||
public bool ErrorDialog;
|
||||
//public Windows.Handle ErrorDialogParentHandle;
|
||||
//public ProcessWindowStyle WindowStyle;
|
||||
|
||||
internal String mFileName = new String() ~ delete _;
|
||||
internal String mArguments = new String() ~ delete _;
|
||||
internal String mDirectory = new String() ~ delete _;
|
||||
internal String mVerb = new String("Open") ~ delete _;
|
||||
|
||||
public Dictionary<String, String> mEnvironmentVariables ~ DeleteDictionyAndKeysAndItems!(_);
|
||||
|
||||
public bool UseShellExecute { get { return mUseShellExecute; } set { mUseShellExecute = value; } };
|
||||
public bool RedirectStandardInput { get { return mRedirectStandardInput; } set { mRedirectStandardInput = value; } };
|
||||
public bool RedirectStandardOutput { get { return mRedirectStandardOutput; } set { mRedirectStandardOutput = value; } };
|
||||
public bool RedirectStandardError { get { return mRedirectStandardError; } set { mRedirectStandardError = value; } };
|
||||
public bool CreateNoWindow { get { return mCreateNoWindow; } set { mCreateNoWindow = value; } };
|
||||
|
||||
internal Encoding StandardOutputEncoding;
|
||||
internal Encoding StandardErrorEncoding;
|
||||
|
||||
//public bool redirectStandardInput { get { return redirectStandardInput; } set { redirectStandardInput = value; } };
|
||||
//public bool redirectStandardInput { get { return redirectStandardInput; } set { redirectStandardInput = value; } };
|
||||
|
||||
public void GetFileName(String outFileName)
|
||||
{
|
||||
if (mFileName != null)
|
||||
outFileName.Append(mFileName);
|
||||
}
|
||||
|
||||
public void SetFileName(StringView fileName)
|
||||
{
|
||||
mFileName.Set(fileName);
|
||||
}
|
||||
|
||||
public void SetWorkingDirectory(StringView fileName)
|
||||
{
|
||||
mDirectory.Set(fileName);
|
||||
}
|
||||
|
||||
public void SetArguments(StringView arguments)
|
||||
{
|
||||
mArguments.Set(arguments);
|
||||
}
|
||||
|
||||
public void SetVerb(StringView verb)
|
||||
{
|
||||
mVerb.Set(verb);
|
||||
}
|
||||
|
||||
public void AddEnvironmentVariable(StringView key, StringView value)
|
||||
{
|
||||
if (mEnvironmentVariables == null)
|
||||
{
|
||||
mEnvironmentVariables = new Dictionary<String, String>();
|
||||
Environment.GetEnvironmentVariables(mEnvironmentVariables);
|
||||
}
|
||||
|
||||
Environment.SetEnvironmentVariable(mEnvironmentVariables, key, value);
|
||||
}
|
||||
|
||||
public this()
|
||||
{
|
||||
//Debug.WriteLine("ProcStartInfo {0} Verb: {1} Tick: {2}", this, mVerb, (int32)Platform.BfpSystem_TickCount());
|
||||
}
|
||||
|
||||
public this(Process process)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue