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