4 writes to DefaultValue
dotnet-svcutil-lib (4)
Shared\Options\OptionBase.cs (1)
114other.DefaultValue = this.DefaultValue;
Shared\Options\SingleValueOption.cs (1)
18this.DefaultValue = false;
Shared\Options\SvcutilOptions.cs (1)
61new SingleValueOption<Verbosity>(VerbosityKey) { DefaultValue = Svcutil.Verbosity.Normal },
Shared\Options\UpdateOptions.cs (1)
63new SingleValueOption<SerializerMode>(SerializerModeKey) { SerializationName = "serializerMode", DefaultValue = Svcutil.SerializerMode.Default },
3 references to DefaultValue
dotnet-svcutil-lib (3)
CommandProcessorOptions.cs (1)
753object typeReuseMode = this.GetOption(TypeReuseModeKey).DefaultValue;
Shared\Options\OptionBase.cs (2)
84get { return _canSerialize && this.Value != null && !this.Value.Equals(this.DefaultValue); } 114other.DefaultValue = this.DefaultValue;