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); 826SortKey key = new SortKey(attributeName, matchingRule, reverseOrder); 842tempKeys[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)
800private SortKey[] _keys = Array.Empty<SortKey>(); 801public SortRequestControl(params SortKey[] sortKeys) : base("1.2.840.113556.1.4.473", null, true, true) 813_keys = new SortKey[sortKeys.Length]; 826SortKey key = new SortKey(attributeName, matchingRule, reverseOrder); 827_keys = new SortKey[] { key }; 830public SortKey[] SortKeys 836return Array.Empty<SortKey>(); 839SortKey[] tempKeys = new SortKey[_keys.Length]; 858_keys = new SortKey[value.Length]; 880SortKey key = _keys[i];