23 references to Items
System.ServiceModel (23)
System\ServiceModel\Channels\DatagramAdapter.cs (3)
615List<TSessionChannel> items = this.Items; 633TSessionChannel oldItem = this.Items[index]; 641TSessionChannel oldItem = this.Items[index];
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (2)
975foreach (EndpointDispatcher item in this.Items) 993EndpointDispatcher item = this.Items[index];
System\ServiceModel\Dispatcher\ChannelDispatcherCollection.cs (2)
54ChannelDispatcherBase channelDispatcher = this.Items[index]; 75old = this.Items[index];
System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (3)
50List<TChannel> items = this.Items; 68TChannel oldItem = this.Items[index]; 76TChannel oldItem = this.Items[index];
System\ServiceModel\ExtensionCollection.cs (3)
58List<IExtension<T>> items = this.Items; 76List<IExtension<T>> items = this.Items; 107this.Items[index].Detach(this.owner);
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]);