Implemented interface members:
19 references to Count
dotnet-svcutil-lib (19)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (2)
1101if (!_didInteractiveInitialization && (ClientRuntime.InteractiveChannelInitializers.Count > 0)) 1120if (ClientRuntime.InteractiveChannelInitializers.Count > 0)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (3)
257for (int i = _pendingChannels.Count - 1; i >= 0; i--) 341for (int i = 0; i < _channelInitializers.Count; ++i) 598for (int i = 0; i < _endpointDispatchers.Count; i++)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientRuntime.cs (4)
332for (int i = 0; i < this.operations.Count; i++) 333max = System.Math.Max(max, this.operations[i].ParameterInspectors.Count); 402if (collection.Count == 0) 408T[] array = new T[collection.Count];
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (3)
277for (int i = 0; i < _operations.Count; i++) 279max = System.Math.Max(max, _operations[i].ParameterInspectors.Count); 281max = System.Math.Max(max, _unhandled.ParameterInspectors.Count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
41for (int i = 0; i < behavior.Operations.Count; i++)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
63for (int i = 0; i < dispatch.Operations.Count; i++)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerFaultFormatter.cs (2)
50for (int i = 0; i < _xmlSerializerFaultContractInfos.Count; i++) 75for (int i = 0; i < _xmlSerializerFaultContractInfos.Count; i++)
FrameworkFork\System.ServiceModel\System\ServiceModel\ExtensionCollection.cs (2)
43array = new IExtension<T>[this.Count]; 60for (int i = this.Count - 1; i >= 0; i--)
FrameworkFork\System.ServiceModel\System\ServiceModel\SynchronizedCollection.cs (1)
272return this.Count - 1;