6 types derived from XmlSortKey
System.Data.SqlXml (6)
System\Xml\Xsl\Runtime\XmlSortKey.cs (6)
93
internal class XmlEmptySortKey :
XmlSortKey
{
126
internal class XmlDecimalSortKey :
XmlSortKey
{
153
internal class XmlIntegerSortKey :
XmlSortKey
{
178
internal class XmlIntSortKey :
XmlSortKey
{
203
internal class XmlStringSortKey :
XmlSortKey
{
268
internal class XmlDoubleSortKey :
XmlSortKey
{
14 references to XmlSortKey
System.Data.SqlXml (14)
System\Xml\Xsl\Runtime\XmlCollation.cs (1)
373
internal
XmlSortKey
CreateSortKey(string s) {
System\Xml\Xsl\Runtime\XmlSortKey.cs (8)
19
private
XmlSortKey
nextKey; // Next sort key if there are multiple keys (null otherwise)
29
XmlSortKey
key = this;
43
public
XmlSortKey
AddSortKey(
XmlSortKey
sortKey) {
61
protected int BreakSortingTie(
XmlSortKey
that) {
113
Debug.Assert(obj is
XmlSortKey
);
114
return -(obj as
XmlSortKey
).CompareTo(this);
294
return BreakSortingTie(obj as
XmlSortKey
);
System\Xml\Xsl\Runtime\XmlSortKeyAccumulator.cs (5)
19
private
XmlSortKey
[] keys;
33
this.keys = new
XmlSortKey
[DefaultSortKeyCount];
76
XmlSortKey
[] keysNew = new
XmlSortKey
[this.pos * 2];
86
private void AppendSortKey(
XmlSortKey
key) {