Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetEnumeratorCore()

IEnumerator< KeyValuePair< string, IEnumerable< string > > > System.Net.Http.Headers.HttpHeaders.GetEnumeratorCore ( )
inlineprivateinherited

Definition at line 306 of file HttpHeaders.cs.

307 {
309 {
310 HeaderDescriptor key = item.Key;
311 object value = item.Value;
312 HeaderStoreItemInfo headerStoreItemInfo = value as HeaderStoreItemInfo;
313 if (headerStoreItemInfo == null)
314 {
316 HeaderDescriptor key2 = key;
317 HeaderStoreItemInfo obj = new HeaderStoreItemInfo
318 {
319 RawValue = value
320 };
323 }
325 {
327 continue;
328 }
331 }
332 }
bool ICollection< KeyValuePair< TKey, TValue > >. Remove(KeyValuePair< TKey, TValue > keyValuePair)
bool ParseRawHeaderValues(HeaderDescriptor descriptor, HeaderStoreItemInfo info, bool removeEmptyHeader)
static string[] GetStoreValuesAsStringArray(HeaderDescriptor descriptor, HeaderStoreItemInfo info)
Dictionary< HeaderDescriptor, object > _headerStore

References System.Net.Http.Headers.HttpHeaders._headerStore, System.Net.Http.Headers.HttpHeaders.GetStoreValuesAsStringArray(), System.item, System.key, System.obj, System.Net.Http.Headers.HttpHeaders.ParseRawHeaderValues(), System.Collections.Generic.Dictionary< TKey, TValue >.Remove(), and System.value.

Referenced by System.Net.Http.Headers.HttpHeaders.GetEnumerator().