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