2 writes to cachedContextState
System.ServiceModel (2)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
3559
this.
cachedContextState
= new CachedBindingContextState();
3568
this.
cachedContextState
= element.cachedContextState;
9 references to cachedContextState
System.ServiceModel (9)
System\ServiceModel\Channels\ChannelDemuxer.cs (9)
3568
this.cachedContextState = element.
cachedContextState
;
3611
if (!this.
cachedContextState
.IsStateCached)
3615
this.
cachedContextState
.CachedBindingParameters.Add(parameter);
3617
this.
cachedContextState
.IsStateCached = true;
3622
foreach (object parameter in this.
cachedContextState
.CachedBindingParameters)
3675
if (this.cacheContextState && this.
cachedContextState
.IsStateCached)
3677
for (int i = 0; i < this.
cachedContextState
.CachedBindingParameters.Count; ++i)
3679
if (!context.BindingParameters.Contains(this.
cachedContextState
.CachedBindingParameters[i].GetType()))
3681
context.BindingParameters.Add(this.
cachedContextState
.CachedBindingParameters[i]);