18 references to Items
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (2)
660foreach (EndpointDispatcher item in this.Items) 678EndpointDispatcher item = this.Items[index];
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (3)
49List<TChannel> items = this.Items; 67TChannel oldItem = this.Items[index]; 75TChannel oldItem = this.Items[index];
FrameworkFork\System.ServiceModel\System\ServiceModel\ExtensionCollection.cs (3)
56List<IExtension<T>> items = this.Items; 74List<IExtension<T>> items = this.Items; 105this.Items[index].Detach(_owner);
FrameworkFork\System.ServiceModel\System\ServiceModel\SynchronizedKeyedCollection.cs (10)
73for (int i = 0; i < this.Items.Count; i++) 75T item = this.Items[i]; 147for (int i = 0; i < Items.Count; i++) 149T item = Items[i]; 162return Items.Contains(item); 176foreach (T item in Items) 212for (int i = 0; i < Items.Count; i++) 214if (_comparer.Equals(key, GetKeyForItem(Items[i]))) 227K key = this.GetKeyForItem(this.Items[index]); 251K oldKey = this.GetKeyForItem(this.Items[index]);