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

◆ TryGetValues() [1/2]

bool System.Net.Http.Headers.HttpHeaders.TryGetValues ( HeaderDescriptor descriptor,
[NotNullWhen(true)] out IEnumerable< string > values )
inlinepackageinherited

Definition at line 221 of file HttpHeaders.cs.

222 {
223 if (_headerStore != null && TryGetAndParseHeaderInfo(descriptor, out var info))
224 {
226 return true;
227 }
228 values = null;
229 return false;
230 }
bool TryGetAndParseHeaderInfo(HeaderDescriptor key, [NotNullWhen(true)] out HeaderStoreItemInfo info)
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.info, System.Net.Http.Headers.HttpHeaders.TryGetAndParseHeaderInfo(), and System.values.