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