16 references to ArgumentId
VBCSCompiler (16)
src\Compilers\Server\VBCSCompiler\BuildProtocolUtil.cs (4)
47
if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.CurrentDirectory)
51
else if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.TempDirectory)
55
else if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.LibEnvVariable)
59
else if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.CommandLineArgument)
src\Compilers\Server\VBCSCompiler\ClientConnectionHandler.cs (2)
65
if (request.Arguments.Count == 1 && request.Arguments[0].ArgumentId == BuildProtocolConstants.
ArgumentId
.Shutdown)
187
if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.KeepAlive)
src\Compilers\Shared\BuildProtocol.cs (10)
90
requestArgs.Add(new Argument(
ArgumentId
.CurrentDirectory, 0, workingDirectory));
91
requestArgs.Add(new Argument(
ArgumentId
.TempDirectory, 0, tempDirectory));
95
requestArgs.Add(new Argument(
ArgumentId
.KeepAlive, 0, keepAlive));
100
requestArgs.Add(new Argument(
ArgumentId
.LibEnvVariable, 0, libDirectory));
106
requestArgs.Add(new Argument(
ArgumentId
.CommandLineArgument, i, arg));
114
var requestArgs = new[] { new Argument(
ArgumentId
.Shutdown, argumentIndex: 0, value: "") };
208
public readonly
ArgumentId
ArgumentId;
212
public Argument(
ArgumentId
argumentId,
223
var
argId = (
ArgumentId
)reader.ReadInt32();