21 references to First
System (12)
compmod\system\collections\generic\linkedlist.cs (2)
583
node = list.
First
;
590
if( node == list.
First
) {
net\System\Net\_PrefixLookup.cs (5)
101
if (lruList.
First
!= null && lruList.
First
.Value.prefix.Equals(prefix))
104
lruList.
First
.Value.value = value;
143
for (LinkedListNode<PrefixValuePair> pairNode = lruList.
First
;
163
if (mostSpecificMatch != null && mostSpecificMatch != lruList.
First
)
net\System\Net\_TimerThread.cs (3)
663
for (LinkedListNode<WeakReference> node = s_NewQueues.
First
; node != null; node = s_NewQueues.
First
) {
673
for (LinkedListNode<WeakReference> node = s_Queues.
First
; node != null; /* node = node.Next must be done in the body */) {
regex\system\text\regularexpressions\Regex.cs (2)
1331
for (LinkedListNode<CachedCodeEntry> current = livecode.
First
; current != null; current = current.Next) {
1352
for (LinkedListNode<CachedCodeEntry> current = livecode.
First
; current != null; current = current.Next) {
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
318
for (LinkedListNode<CacheInfo> info = this.list.
First
; info != null; info = info.Next) {
System.IdentityModel (2)
System\IdentityModel\Tokens\MruSessionSecurityTokenCache.cs (2)
203
if (this.mruList.Count > 1 && !object.ReferenceEquals(this.mruList.
First
, entry.Node))
291
if (this.mruList.Count > 1 && !object.ReferenceEquals(this.mruList.
First
, entry.Node))
System.ServiceModel.Internals (1)
System\Runtime\MruCache.cs (1)
155
&& !object.ReferenceEquals(this.mruList.
First
, entry.node))
System.Web (2)
Util\SubscriptionQueue.cs (2)
52
if (_list != null && _list.
First
!= null) {
53
LinkedListNode<T> theNode = _list.
First
;
System.Web.DataVisualization (3)
WebForm\General\ChartHttpHandler.cs (3)
1791
this._current = this._list.
First
;
1830
if (!this.IsExpired(this._list.
First
.Value, now))
1837
this._current = this._list.
First
;