4 references to EnableLoggingMarkupKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
69
public readonly CommandSwitch EnableLoggingMarkup = new CommandSwitch(
EnableLoggingMarkupKey
, "elm", SwitchType.Flag, OperationalContext.Infrastructure);
Shared\Options\SvcutilOptions.cs (3)
33
public bool? EnableLoggingMarkup { get { return GetValue<bool?>(
EnableLoggingMarkupKey
); } set { SetValue(
EnableLoggingMarkupKey
, value); } }
52
new SingleValueOption<bool>(
EnableLoggingMarkupKey
),