5 instantiations of ChannelCacheSettings
System.ServiceModel.Activities (5)
System\ServiceModel\Activities\ChannelCacheSettings.cs (1)
17internal static ChannelCacheSettings EmptyCacheSettings = new ChannelCacheSettings { MaxItemsInCache = 0 };
System\ServiceModel\Activities\Configuration\SendMessageChannelCacheElement.cs (2)
68FactorySettings = new ChannelCacheSettings { IdleTimeout = FactorySettings.IdleTimeout, LeaseTimeout = FactorySettings.LeaseTimeout, MaxItemsInCache = FactorySettings.MaxItemsInCache }, 69ChannelSettings = new ChannelCacheSettings { IdleTimeout = ChannelSettings.IdleTimeout, LeaseTimeout = ChannelSettings.LeaseTimeout, MaxItemsInCache = ChannelSettings.MaxItemsInCache }
System\ServiceModel\Activities\SendMessageChannelCache.cs (2)
76this.channelCacheSettings = new ChannelCacheSettings { LeaseTimeout = ChannelCacheDefaults.DefaultChannelLeaseTimeout }; 96this.factoryCacheSettings = new ChannelCacheSettings { LeaseTimeout = ChannelCacheDefaults.DefaultFactoryLeaseTimeout };
15 references to ChannelCacheSettings
System.ServiceModel.Activities (15)
System\ServiceModel\Activities\ChannelCacheSettings.cs (1)
17internal static ChannelCacheSettings EmptyCacheSettings = new ChannelCacheSettings { MaxItemsInCache = 0 };
System\ServiceModel\Activities\Description\SendMessageChannelCacheBehavior.cs (2)
23public ChannelCacheSettings FactorySettings 29public ChannelCacheSettings ChannelSettings
System\ServiceModel\Activities\InternalSendMessage.cs (3)
1347ChannelCacheSettings channelCacheSettings; 1394channelCacheSettings = ChannelCacheSettings.EmptyCacheSettings; 2774public ChannelFactoryReference(FactoryCacheKey factoryKey, ServiceEndpoint targetEndpoint, ChannelCacheSettings channelCacheSettings)
System\ServiceModel\Activities\Send.cs (1)
423ChannelCacheSettings factorySettings = channelCacheExtension.FactorySettings;
System\ServiceModel\Activities\SendMessageChannelCache.cs (8)
16ChannelCacheSettings channelCacheSettings; 17ChannelCacheSettings factoryCacheSettings; 29public SendMessageChannelCache(ChannelCacheSettings factorySettings, ChannelCacheSettings channelSettings) : 35public SendMessageChannelCache(ChannelCacheSettings factorySettings, ChannelCacheSettings channelSettings, bool allowUnsafeCaching) 64public ChannelCacheSettings ChannelSettings 85public ChannelCacheSettings FactorySettings