8 references to DescendingOrder
System.Data.SqlXml (8)
System\Xml\Xsl\Runtime\XmlCollation.cs (2)
390
return new XmlStringSortKey(sortKey,
DescendingOrder
);
416
return new XmlStringSortKey(bytesKey,
DescendingOrder
);
System\Xml\Xsl\Runtime\XmlSortKey.cs (6)
101
this.isEmptyGreatest = collation.EmptyGreatest != collation.
DescendingOrder
;
131
this.decVal = collation.
DescendingOrder
? -value : value;
158
this.longVal = collation.
DescendingOrder
? ~value : value;
183
this.intVal = collation.
DescendingOrder
? ~value : value;
281
this.dblVal = (collation.EmptyGreatest != collation.
DescendingOrder
) ? Double.PositiveInfinity : Double.NegativeInfinity;
284
this.dblVal = collation.
DescendingOrder
? -value : value;