7 types derived from SynchronizedCollection
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (2)
648internal class EndpointDispatcherCollection : SynchronizedCollection<EndpointDispatcher> 690internal class ChannelDispatcherBehaviorCollection<T> : SynchronizedCollection<T>
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientRuntime.cs (1)
488internal class ProxyBehaviorCollection<T> : SynchronizedCollection<T>
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
429internal class DispatchBehaviorCollection<T> : SynchronizedCollection<T>
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (1)
10internal class SynchronizedChannelCollection<TChannel> : SynchronizedCollection<TChannel>
FrameworkFork\System.ServiceModel\System\ServiceModel\ExtensionCollection.cs (1)
10public sealed class ExtensionCollection<T> : SynchronizedCollection<IExtension<T>>, IExtensionCollection<T>
FrameworkFork\System.ServiceModel\System\ServiceModel\SynchronizedKeyedCollection.cs (1)
12public abstract class SynchronizedKeyedCollection<K, T> : SynchronizedCollection<T>
2 instantiations of SynchronizedCollection
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
372SynchronizedCollection<XmlSerializerFaultContractInfo> faultInfos = new SynchronizedCollection<XmlSerializerFaultContractInfo>();
FrameworkFork\System.ServiceModel\System\ServiceModel\InstanceContext.cs (1)
158_wmiChannels = new SynchronizedCollection<IChannel>();
31 references to SynchronizedCollection
dotnet-svcutil-lib (31)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (4)
116private XmlSerializerFaultFormatter CreateFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfos) 238private SynchronizedCollection<XmlSerializerFaultContractInfo> _xmlSerializerFaultContractInfos; 328internal SynchronizedCollection<XmlSerializerFaultContractInfo> XmlSerializerFaultContractInfos 372SynchronizedCollection<XmlSerializerFaultContractInfo> faultInfos = new SynchronizedCollection<XmlSerializerFaultContractInfo>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (3)
18private SynchronizedCollection<IChannelInitializer> _channelInitializers; 103public SynchronizedCollection<EndpointDispatcher> Endpoints 356internal SynchronizedCollection<T> NewBehaviorCollection<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientOperation.cs (4)
26internal SynchronizedCollection<IParameterInspector> parameterInspectors; 32private SynchronizedCollection<FaultContractInfo> _faultContractInfos; 78public SynchronizedCollection<FaultContractInfo> FaultContractInfos 207public new SynchronizedCollection<IParameterInspector> ParameterInspectors
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientRuntime.cs (6)
43internal SynchronizedCollection<IClientMessageInspector> messageInspectors; 133public SynchronizedCollection<IChannelInitializer> ChannelInitializers 270public SynchronizedCollection<IInteractiveChannelInitializer> InteractiveChannelInitializers 346public new SynchronizedCollection<IClientMessageInspector> MessageInspectors 398internal T[] GetArray<T>(SynchronizedCollection<T> collection) 440internal SynchronizedCollection<T> NewBehaviorCollection<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DataContractSerializerFaultFormatter.cs (1)
16internal DataContractSerializerFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchOperation.cs (4)
12private readonly SynchronizedCollection<FaultContractInfo> _faultContractInfos; 18private readonly SynchronizedCollection<IParameterInspector> _parameterInspectors; 61public SynchronizedCollection<FaultContractInfo> FaultContractInfos 168public SynchronizedCollection<IParameterInspector> ParameterInspectors
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
344internal SynchronizedCollection<T> NewBehaviorCollection<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
26internal FaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerFaultFormatter.cs (5)
20private SynchronizedCollection<XmlSerializerOperationBehavior.Reflector.XmlSerializerFaultContractInfo> _xmlSerializerFaultContractInfos; 23SynchronizedCollection<XmlSerializerOperationBehavior.Reflector.XmlSerializerFaultContractInfo> xmlSerializerFaultContractInfos) 29internal XmlSerializerFaultFormatter(SynchronizedCollection<FaultContractInfo> faultContractInfoCollection, 30SynchronizedCollection<XmlSerializerOperationBehavior.Reflector.XmlSerializerFaultContractInfo> xmlSerializerFaultContractInfos) 36private void Initialize(SynchronizedCollection<XmlSerializerOperationBehavior.Reflector.XmlSerializerFaultContractInfo> xmlSerializerFaultContractInfos)
FrameworkFork\System.ServiceModel\System\ServiceModel\EmptyArray.cs (1)
33internal static T[] ToArray(SynchronizedCollection<T> collection)
FrameworkFork\System.ServiceModel\System\ServiceModel\InstanceContext.cs (1)
27private SynchronizedCollection<IChannel> _wmiChannels;