1 write to _mruList
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\MruCache.cs (1)
40
_mruList
= new LinkedList<TKey>();
9 references to _mruList
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\MruCache.cs (9)
75
TKey keyRemove =
_mruList
.Last.Value;
76
_mruList
.RemoveLast();
85
entry.node =
_mruList
.AddFirst(key);
102
_mruList
.Clear();
117
_mruList
.Remove(entry.node);
155
if (found &&
_mruList
.Count > 1
156
&& !object.ReferenceEquals(
_mruList
.First, entry.node))
158
_mruList
.Remove(entry.node);
159
_mruList
.AddFirst(entry.node);