Implemented interface member:
1 write to
System.ServiceModel.Primitives (1)
System\ServiceModel\SynchronizedCollection.cs (1)
254this[index] = (T)value;
23 references to
System.ServiceModel.Primitives (15)
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (3)
240PendingChannels[i].Abort(); 324_channelInitializers[i].Initialize(channel); 581EndpointDispatcher endpoint = _endpointDispatchers[i];
System\ServiceModel\Dispatcher\ClientRuntime.cs (1)
320max = System.Math.Max(max, _operations[i].ParameterInspectors.Count);
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
271max = System.Math.Max(max, _operations[i].ParameterInspectors.Count);
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
40ClientOperation operation = behavior.Operations[i];
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
59DispatchOperation operation = dispatch.Operations[i];
System\ServiceModel\Dispatcher\TerminatingOperationBehavior.cs (1)
37DispatchOperation operation = dispatch.Operations[i];
System\ServiceModel\Dispatcher\XmlSerializerFaultFormatter.cs (5)
44if (_xmlSerializerFaultContractInfos[i].FaultContractInfo.Detail == detailType) 46faultInfo = _xmlSerializerFaultContractInfos[i]; 73if (_xmlSerializerFaultContractInfos[i].FaultContractInfo.Action == action 74|| _xmlSerializerFaultContractInfos[i].FaultContractInfo.Action == MessageHeaders.WildcardAction) 76faultInfos.Add(_xmlSerializerFaultContractInfos[i]);
System\ServiceModel\SynchronizedCollection.cs (1)
249return this[index];
System\ServiceModel\UriSchemeKeyedCollection.cs (1)
49if (this[index].Scheme != item.Scheme)
System.ServiceModel.Primitives.Tests (8)
ServiceModel\SynchronizedCollection.cs (8)
25Assert.True(coll[i] == i, string.Format("coll element {0} was wrong! Expected: {1} got: {2} ", i, i, coll[i])); 33Assert.True(coll2[i] == i, string.Format("coll2 element was wrong! expected: {0} got: {1} ", i, coll2[i])); 39Assert.True(coll3[i] == i + 1, string.Format("coll3 element {0} was wrong! expected: {1} got: {2}", i, i+1, coll3[i])); 69Assert.True(coll[i] == i, string.Format("coll element was wrong after modification! Expected: {0} got: {1} ", i, coll[i]));