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