4 references to ErrorInvalidOptionValueFormat
dotnet-svcutil-lib (4)
Shared\Options\OptionsSerializer.cs (1)
70
var jOptionsObject = jPropInfo.Value as JObject ?? throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Shared.Resources.
ErrorInvalidOptionValueFormat
, jPropInfo.Value?.Type, option.SerializationName));
Shared\Options\OptionValueParser.cs (3)
238
var invalidValueError = string.Format(CultureInfo.CurrentCulture, Shared.Resources.
ErrorInvalidOptionValueFormat
, value, option.Name);
271
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Shared.Resources.
ErrorInvalidOptionValueFormat
, value, option.Name));
277
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Shared.Resources.
ErrorInvalidOptionValueFormat
, value, option.Name), innerException);