4 writes to Value
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (2)
156o.Value = null; 314option.Value = null; // this will exclude the invalid option from processing/serializing.
Shared\Options\ApplicationOptions.cs (1)
256option.Value = value;
Shared\Options\OptionBase.cs (1)
113other.Value = this.Value;
15 references to Value
dotnet-svcutil-lib (15)
Shared\Options\ApplicationOptions.cs (3)
244if (option != null && option.Value != null) 246return (TValue)option.Value; 254if (value != option.Value)
Shared\Options\ListValueOption.cs (1)
26this.InnerList = this.Value as ListValue<TValue>;
Shared\Options\OptionBase.cs (9)
65public virtual bool HasValue { get { return this.Value != null; } } 84get { return _canSerialize && this.Value != null && !this.Value.Equals(this.DefaultValue); } 113other.Value = this.Value; 133if (this.Value == null || !this.Value.Equals(value)) 135var oldValue = this.Value; 168var value = OptionValueParser.GetSerializationValue(this.Value); 239var value = string.Format(CultureInfo.CurrentCulture, "{0}: {1}", this.Name, this.Value?.ToString());
Shared\Options\OptionsSerializer.cs (1)
222var value = OptionValueParser.GetSerializationValue(option.Value);
Shared\Options\OptionValueParser.cs (1)
162var value = option.Value;