4 instantiations of SortKey
System.DirectoryServices.Protocols (4)
System\DirectoryServices\Protocols\common\DirectoryControl.cs (4)
816
_keys[i] = new
SortKey
(sortKeys[i].AttributeName, sortKeys[i].MatchingRule, sortKeys[i].ReverseOrder);
826
SortKey key = new
SortKey
(attributeName, matchingRule, reverseOrder);
842
tempKeys[i] = new
SortKey
(_keys[i].AttributeName, _keys[i].MatchingRule, _keys[i].ReverseOrder);
861
_keys[i] = new
SortKey
(value[i].AttributeName, value[i].MatchingRule, value[i].ReverseOrder);
12 references to SortKey
System.DirectoryServices.Protocols (12)
System\DirectoryServices\Protocols\common\DirectoryControl.cs (12)
800
private
SortKey
[] _keys = Array.Empty<
SortKey
>();
801
public SortRequestControl(params
SortKey
[] sortKeys) : base("1.2.840.113556.1.4.473", null, true, true)
813
_keys = new
SortKey
[sortKeys.Length];
826
SortKey
key = new SortKey(attributeName, matchingRule, reverseOrder);
827
_keys = new
SortKey
[] { key };
830
public
SortKey
[] SortKeys
836
return Array.Empty<
SortKey
>();
839
SortKey
[] tempKeys = new
SortKey
[_keys.Length];
858
_keys = new
SortKey
[value.Length];
880
SortKey
key = _keys[i];