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