56 references to String
System.Data.SqlXml (49)
System\Xml\Xsl\IlGen\GenerateHelper.cs (3)
976case XmlTypeCode.String: meth = XmlILMethods.StrEq; break; 991case XmlTypeCode.String: meth = XmlILMethods.StrCmp; break; 1330case XmlTypeCode.String: meth = XmlILMethods.SortKeyString; break;
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (5)
1506if (ndParsedTagName.Right.XmlType.TypeCode == XmlTypeCode.String) { 1608case XmlTypeCode.String: 1683ClrCompare(ndComp.NodeType == QilNodeType.Before ? QilNodeType.Lt : QilNodeType.Gt, XmlTypeCode.String); 2975else if ((object) typBase == (object) TypeFactory.String) codeBase = XmlTypeCode.String; 3872if ((ndName as QilBinary).Right.XmlType.TypeCode == XmlTypeCode.String)
System\Xml\Xsl\Runtime\XmlQueryContext.cs (1)
264case XmlTypeCode.String: objActualArgs[i] = XsltConvert.ToString(args[i]); break;
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (5)
472case XmlTypeCode.String: 555case XmlTypeCode.String: 610case XmlTypeCode.String: 612value = new XmlQueryItemSequence(new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), XsltConvert.ToString((DateTime) value))); 614value = new XmlQueryItemSequence(new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), value));
System\Xml\Xsl\Runtime\XsltConvert.cs (5)
270case XmlTypeCode.String: 276if (value.XmlType.TypeCode == XmlTypeCode.String) 289case XmlTypeCode.String: 307case XmlTypeCode.String: 311case XmlTypeCode.String:
System\Xml\Xsl\Runtime\XsltFunctions.cs (4)
191case "vendor" : return new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), "Microsoft"); 192case "vendor-url": return new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), "http://www.microsoft.com"); 196return new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), typeof(XsltLibrary).Assembly.ImageRuntimeVersion); 199return new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), string.Empty);
System\Xml\Xsl\XmlQueryType.cs (1)
740/* NormalizedString */ XmlTypeCode.String,
System\Xml\Xsl\XmlQueryTypeFactory.cs (2)
219public static readonly XmlQueryType String = TF.Type(XmlTypeCode.String, false); 220public static readonly XmlQueryType StringX = TF.Type(XmlTypeCode.String, true);
System\Xml\Xsl\XPath\XPathBuilder.cs (12)
131Debug.Assert(compType == XmlTypeCode.Boolean || compType == XmlTypeCode.Double || compType == XmlTypeCode.String); 152Debug.Assert(compType == XmlTypeCode.Boolean || compType == XmlTypeCode.Double || compType == XmlTypeCode.String, "I don't know what to do with RTF here"); 195return CompareNodeSetAndNodeSet(op, left, right, XmlTypeCode.String); 204/*default:*/ XmlTypeCode.String 682public static readonly XmlTypeCode[] argString = {XmlTypeCode.String}; 683public static readonly XmlTypeCode[] argString2 = {XmlTypeCode.String, XmlTypeCode.String}; 684public static readonly XmlTypeCode[] argString3 = {XmlTypeCode.String, XmlTypeCode.String, XmlTypeCode.String}; 685public static readonly XmlTypeCode[] argFnSubstr = {XmlTypeCode.String, XmlTypeCode.Double, XmlTypeCode.Double}; 900args[i] = f.ConvertToType(XmlTypeCode.String, args[i]);
System\Xml\Xsl\XPath\XPathQilFactory.cs (4)
163case XmlTypeCode.String : return ConvertToString(n); 186case XmlTypeCode.String : 210case XmlTypeCode.String : 236case XmlTypeCode.String :
System\Xml\Xsl\Xslt\QilGeneratorEnv.cs (5)
205case XmlTypeCode.String: args[i] = f.ConvertToString(args[i]); break; 247private static readonly XmlTypeCode[] argFnKey = {XmlTypeCode.String, XmlTypeCode.Item}; 248private static readonly XmlTypeCode[] argFnFormatNumber = {XmlTypeCode.Double, XmlTypeCode.String, XmlTypeCode.String}; 613case XmlTypeCode.String : return f.String("string");
System\Xml\Xsl\Xslt\QilStrConcatenator.cs (1)
57Debug.Assert(value.XmlType.TypeCode == XmlTypeCode.String);
System\Xml\Xsl\Xslt\XsltQilFactory.cs (1)
28case XmlTypeCode.String:
System.Xml (7)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3811value = GetValueConverter(XmlTypeCode.String).ChangeType(
System\Xml\Schema\DataTypeImplementation.cs (1)
1286public override XmlTypeCode TypeCode { get { return XmlTypeCode.String; }}
System\Xml\Schema\XmlSchemaDataType.cs (1)
165case XmlTypeCode.String:
System\Xml\Schema\XmlSchemaValidator.cs (2)
2084XmlSchemaSimpleType stringType = XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String); 2092XmlSchemaSimpleType stringType = XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String);
System\Xml\Schema\XmlValueConverter.cs (2)
2955if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), (string) value)); 3005if (sourceType == StringType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), (string) value));