System\Xml\Schema\XmlValueConverter.cs (9)
2040return (bool)ChangeTypeWildcardDestination(value, BooleanType, null);
2062return (DateTime)ChangeTypeWildcardDestination(value, DateTimeType, null);
2084return (DateTimeOffset)ChangeTypeWildcardDestination(value, DateTimeOffsetType, null);
2105return (decimal)ChangeTypeWildcardDestination(value, DecimalType, null);
2127return (double)ChangeTypeWildcardDestination(value, DoubleType, null);
2149return (int)ChangeTypeWildcardDestination(value, Int32Type, null);
2171return (long)ChangeTypeWildcardDestination(value, Int64Type, null);
2193return (float)ChangeTypeWildcardDestination(value, SingleType, null);
2260return (string)ChangeTypeWildcardDestination(value, StringType, nsResolver);