4 references to EnableDataBindingKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
68
public readonly CommandSwitch EnableDataBinding = new CommandSwitch(
EnableDataBindingKey
, "edb", SwitchType.Flag);
Shared\Options\UpdateOptions.cs (3)
34
public bool? EnableDataBinding { get { return GetValue<bool?>(
EnableDataBindingKey
); } set { SetValue(
EnableDataBindingKey
, value); } }
54
new SingleValueOption<bool>(
EnableDataBindingKey
),