3 instantiations of XmlCollation
System.Data.SqlXml (3)
System\Xml\Xsl\Runtime\XmlCollation.cs (2)
127private static XmlCollation cp = new XmlCollation(CultureInfo.InvariantCulture, new Options((int)CompareOptions.Ordinal)); 288return new XmlCollation(cultInfo, options);
System\Xml\Xsl\Runtime\XmlQueryStaticData.cs (1)
143this.collations[idx] = new XmlCollation(dataReader);
32 references to XmlCollation
System.Data.SqlXml (32)
System\Xml\Xsl\IlGen\StaticDataManager.cs (4)
68private UniqueList<XmlCollation> uniqueCollations; 209this.uniqueCollations = new UniqueList<XmlCollation>(); 211return this.uniqueCollations.Add(XmlCollation.Create(collation)); 217public XmlCollation[] Collations {
System\Xml\Xsl\Runtime\XmlCollation.cs (6)
127private static XmlCollation cp = new XmlCollation(CultureInfo.InvariantCulture, new Options((int)CompareOptions.Ordinal)); 129internal static XmlCollation CodePointCollation { 133internal static XmlCollation Create(string collationLiteral) { 140internal static XmlCollation Create(string collationLiteral, bool throwOnError) { 302XmlCollation that = obj as XmlCollation;
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (4)
58private XmlCollation[] collations; 780public XmlCollation GetCollation(int index) { 788public XmlCollation CreateCollation(string collation) { 789return XmlCollation.Create(collation);
System\Xml\Xsl\Runtime\XmlQueryStaticData.cs (4)
33private XmlCollation[] collations; 141this.collations = new XmlCollation[length]; 248foreach (XmlCollation collation in this.collations) { 328public XmlCollation[] Collations {
System\Xml\Xsl\Runtime\XmlSortKey.cs (6)
96public XmlEmptySortKey(XmlCollation collation) { 129public XmlDecimalSortKey(decimal value, XmlCollation collation) { 156public XmlIntegerSortKey(long value, XmlCollation collation) { 181public XmlIntSortKey(int value, XmlCollation collation) { 272public XmlDoubleSortKey(double value, XmlCollation collation) { 327public XmlDateTimeSortKey(DateTime value, XmlCollation collation) : base(value.Ticks, collation) {
System\Xml\Xsl\Runtime\XmlSortKeyAccumulator.cs (7)
42public void AddStringSortKey(XmlCollation collation, string value) { 46public void AddDecimalSortKey(XmlCollation collation, decimal value) { 50public void AddIntegerSortKey(XmlCollation collation, long value) { 54public void AddIntSortKey(XmlCollation collation, int value) { 58public void AddDoubleSortKey(XmlCollation collation, double value) { 62public void AddDateTimeSortKey(XmlCollation collation, DateTime value) { 66public void AddEmptySortKey(XmlCollation collation) {
System\Xml\Xsl\Xslt\XsltInput.cs (1)
858if (System.Xml.Xsl.Runtime.XmlCollation.Create(list[col], /*throw:*/false) != null) {