System\Xml\Schema\XmlValueConverter.cs (9)
2196return (bool) ChangeTypeWildcardDestination(value, BooleanType, null);
2216return (DateTime) ChangeTypeWildcardDestination(value, DateTimeType, null);
2236return (DateTimeOffset) ChangeTypeWildcardDestination(value, DateTimeOffsetType, null);
2255return (decimal) ChangeTypeWildcardDestination(value, DecimalType, null);
2275return (double) ChangeTypeWildcardDestination(value, DoubleType, null);
2295return (int) ChangeTypeWildcardDestination(value, Int32Type, null);
2315return (long) ChangeTypeWildcardDestination(value, Int64Type, null);
2335return (float) ChangeTypeWildcardDestination(value, SingleType, null);
2398return (string) ChangeTypeWildcardDestination(value, StringType, nsResolver);