1 type derived from SortedList
System.IdentityModel (1)
System\IdentityModel\Metadata\IndexedProtocolEndpointDictionary.cs (1)
11public class IndexedProtocolEndpointDictionary : SortedList<int, IndexedProtocolEndpoint>
21 instantiations of SortedList
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\AnimationStorage.cs (1)
729propertyTriggerLayers = new SortedList<Int64, AnimationLayer>(1);
PresentationFramework (2)
src\Framework\System\Windows\Documents\TextContainerChangedEventArgs.cs (2)
36_changes = new SortedList<int, TextChange>(); 336SortedList<int, TextChange> newChanges = new SortedList<int, TextChange>(Changes.Count);
System (2)
compmod\system\componentmodel\ComponentResourceManager.cs (2)
202sd = new SortedList<string, object>(StringComparer.OrdinalIgnoreCase); 205sd = new SortedList<string, object>(StringComparer.Ordinal);
System.ServiceModel (6)
System\ServiceModel\Channels\Msmq3PoisonHandler.cs (1)
21this.trackedMessages = new SortedList<long, int>(maxTrackedMessages);
System\ServiceModel\Description\UniqueCodeIdentifierScope.cs (1)
23names = new SortedList<string, string>(StringComparer.OrdinalIgnoreCase);
System\ServiceModel\Description\WsdlExporter.cs (1)
720SortedList<string, string> policyKeys = new SortedList<string, string>();
System\ServiceModel\Diagnostics\ServiceModelPerformanceCounters.cs (1)
37this.actionToOperation = new SortedList<string, string>(contractDescription.Operations.Count);
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
34static SortedList<int, string> traceCodes = new SortedList<int, string>(382)
System\UriTemplateTrieNode.cs (1)
676this.items = new SortedList<UriTemplateCompoundPathSegment, Collection<AscendingSortedCompoundSegmentsCollection<T>.CollectionItem>>();
System.Web.Extensions (6)
UI\ProfileServiceManager.cs (4)
132SortedList<string, object> topLevelSettings = new SortedList<string, object>(loadedProperties.Count); 189profileGroups = new SortedList<string, SortedList<string, object>>(); 190containingObject = new SortedList<string, object>(); 196containingObject = new SortedList<string, object>();
UI\ScriptComponentDescriptor.cs (2)
63_events = new SortedList<string, string>(StringComparer.Ordinal); 82_properties = new SortedList<string, Expression>(StringComparer.Ordinal);
System.Workflow.Runtime (1)
WorkBatch.cs (1)
236workItems = new SortedList<long, object>();
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodInfo.cs (1)
48new SortedList<int, ContractMethodParameterInfo>();
WindowsBase (2)
Base\MS\Internal\PriorityQueue.cs (1)
12_priorityChains = new SortedList<int, PriorityChain<T>>(); // NOTE: should be Priority
Base\System\IO\Packaging\Package.cs (1)
74_partList = new SortedList<PackUriHelper.ValidatedPartUri, PackagePart>(); // initial default is zero
56 references to SortedList
PresentationCore (2)
Core\CSharp\System\Windows\Media\Animation\AnimationStorage.cs (2)
725SortedList<Int64, AnimationLayer> propertyTriggerLayers = storage._propertyTriggerLayers; 1172private SortedList<Int64, AnimationLayer> _propertyTriggerLayers;
PresentationFramework (3)
src\Framework\System\Windows\Documents\TextContainerChangedEventArgs.cs (3)
168internal SortedList<int, TextChange> Changes 336SortedList<int, TextChange> newChanges = new SortedList<int, TextChange>(Changes.Count); 509private SortedList<int, TextChange> _changes;
System (14)
compmod\system\collections\generic\sortedlist.cs (10)
688private SortedList<TKey, TValue> _sortedList; 698internal Enumerator(SortedList<TKey, TValue> sortedList, int getEnumeratorRetType) { 797private SortedList<TKey, TValue> _sortedList; 802internal SortedListKeyEnumerator(SortedList<TKey, TValue> sortedList) { 858private SortedList<TKey, TValue> _sortedList; 863internal SortedListValueEnumerator(SortedList<TKey, TValue> sortedList) { 921private SortedList<TKey, TValue> _dict; 923internal KeyList(SortedList<TKey, TValue> dictionary) { 1021private SortedList<TKey, TValue> _dict; 1023internal ValueList(SortedList<TKey, TValue> dictionary) {
compmod\system\componentmodel\ComponentResourceManager.cs (4)
88SortedList<string, object> resources; 97resources = (SortedList<string, object>)_resourceSets[culture]; 186private SortedList<string, object> FillResources(CultureInfo culture, out ResourceSet resourceSet) { 188SortedList<string, object> sd;
System.ServiceModel (7)
System\ServiceModel\Channels\CorrelationKey.cs (1)
114SortedList<string, string> sortedKeyData = new SortedList<string, string>(keyData, StringComparer.Ordinal);
System\ServiceModel\Channels\Msmq3PoisonHandler.cs (1)
15SortedList<long, int> trackedMessages;
System\ServiceModel\Description\UniqueCodeIdentifierScope.cs (1)
17SortedList<string, string> names;
System\ServiceModel\Description\WsdlExporter.cs (1)
720SortedList<string, string> policyKeys = new SortedList<string, string>();
System\ServiceModel\Diagnostics\ServiceModelPerformanceCounters.cs (1)
20SortedList<string, string> actionToOperation;
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
34static SortedList<int, string> traceCodes = new SortedList<int, string>(382)
System\UriTemplateTrieNode.cs (1)
672SortedList<UriTemplateCompoundPathSegment, Collection<CollectionItem>> items;
System.Web.Extensions (16)
UI\ProfileServiceManager.cs (12)
132SortedList<string, object> topLevelSettings = new SortedList<string, object>(loadedProperties.Count); 133SortedList<string, SortedList<string, object>> profileGroups = null; 167SortedList<string, object> topLevelSettings, 168ref SortedList<string, SortedList<string, object>> profileGroups, 177SortedList<string, object> containingObject; 189profileGroups = new SortedList<string, SortedList<string, object>>(); 212private static void RenderProfileProperties(StringBuilder sb, SortedList<string, object> topLevelSettings, SortedList<string, SortedList<string, object>> profileGroups) { 225foreach(KeyValuePair<string, SortedList<string, object>> group in profileGroups) {
UI\ScriptComponentDescriptor.cs (4)
24private SortedList<string, string> _events; 26private SortedList<string, Expression> _properties; 60private SortedList<string, string> Events { 79private SortedList<string, Expression> Properties {
System.Workflow.Runtime (9)
WorkBatch.cs (9)
130foreach (KeyValuePair<IPendingWork, SortedList<long, object>> item in batch._pendingWorkCollection.WorkItems) 133SortedList<long, object> newItems = item.Value; 168Dictionary<IPendingWork, SortedList<long, object>> Items; 173Items = new Dictionary<IPendingWork, SortedList<long, object>>(); 176internal Dictionary<IPendingWork, SortedList<long, object>> WorkItems 202foreach (KeyValuePair<IPendingWork, SortedList<long, object>> workItem in this.WorkItems) 232SortedList<long, object> workItems = null; 248foreach (KeyValuePair<IPendingWork, SortedList<long, object>> workItem in Items) 259foreach (KeyValuePair<IPendingWork, SortedList<long, object>> workItem in Items)
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodInfo.cs (1)
47SortedList<int, ContractMethodParameterInfo> localParameters =
WindowsBase (4)
Base\MS\Internal\PriorityQueue.cs (1)
390private SortedList<int, PriorityChain<T>> _priorityChains; // NOTE: should be Priority
Base\System\IO\Packaging\Package.cs (1)
1465private SortedList<PackUriHelper.ValidatedPartUri, PackagePart> _partList;
Base\System\IO\Packaging\PackagePartCollection.cs (2)
101internal PackagePartCollection(SortedList<PackUriHelper.ValidatedPartUri, PackagePart> partList) 141private SortedList<PackUriHelper.ValidatedPartUri, PackagePart> _partList;