4 references to SyncOnlyKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
89
public readonly CommandSwitch SyncOnly = new CommandSwitch(
SyncOnlyKey
, "so", SwitchType.Flag);
Shared\Options\UpdateOptions.cs (3)
46
public bool? SyncOnly { get { return GetValue<bool?>(
SyncOnlyKey
); } set { SetValue(
SyncOnlyKey
, value); } }
67
new SingleValueOption<bool>(
SyncOnlyKey
) { SerializationName = "syncOnly" },