18 references to ConvertFromInvariantString
Microsoft.AspNetCore.Http.Abstractions.Tests (1)
PathStringTests.cs (1)
293PathString result = (PathString)converter.ConvertFromInvariantString("/foo")!;
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
243return (TKey?)TypeDescriptor.GetConverter(typeof(TKey)).ConvertFromInvariantString(id);
Microsoft.Extensions.Configuration.Binder (1)
ConfigurationBinder.cs (1)
891result = converter.ConvertFromInvariantString(value);
Microsoft.Extensions.Identity.Stores (2)
RoleStoreBase.cs (1)
130return (TKey?)TypeDescriptor.GetConverter(typeof(TKey)).ConvertFromInvariantString(id);
UserStoreBase.cs (1)
231return (TKey?)TypeDescriptor.GetConverter(typeof(TKey)).ConvertFromInvariantString(id);
PresentationCore (1)
System\Windows\Input\Command\KeyGesture.cs (1)
298return _keyGestureConverter.ConvertFromInvariantString(keyGestureToken) as KeyGesture;
System.ComponentModel.Annotations (2)
System\ComponentModel\DataAnnotations\RangeAttribute.cs (2)
230? converter.ConvertFromInvariantString((string)minimum)! 233? converter.ConvertFromInvariantString((string)maximum)!
System.ComponentModel.TypeConverter (2)
System\ComponentModel\AmbientValueAttribute.cs (1)
40_value = TypeDescriptorGetConverter(type).ConvertFromInvariantString(value);
System\ComponentModel\TypeDescriptor.cs (1)
881return GetConverter(type).ConvertFromInvariantString(stringValue);
System.Configuration.ConfigurationManager (4)
System\Configuration\ConfigurationProperty.cs (2)
305defaultValue = Converter.ConvertFromInvariantString((string)defaultValue); 336result = Converter.ConvertFromInvariantString(value);
System\Configuration\InfiniteTimeSpanConverter.cs (1)
26: s_timeSpanConverter.ConvertFromInvariantString((string)data);
System\Configuration\SettingsPropertyValue.cs (1)
233return converter.ConvertFromInvariantString(serializedValue);
System.Data.Common (2)
System\Data\XMLSchema.cs (2)
52propValue = converter.ConvertFromInvariantString(value); 299propValue = converter.ConvertFromInvariantString(value);
System.Resources.Extensions (2)
System\Resources\Extensions\DeserializingResourceReader.cs (1)
191value = converter.ConvertFromInvariantString(stringData)!;
System\Resources\Extensions\PreserializedResourceWriter.cs (1)
107object primitiveValue = converter.ConvertFromInvariantString(value)!;