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

◆ CopyTo() [2/2]

void System.Net.Http.Headers.HttpHeaderValueCollection< T >.CopyTo ( T[] array,
int arrayIndex )
inline

Definition at line 82 of file HttpHeaderValueCollection.cs.

83 {
84 if (array == null)
85 {
86 throw new ArgumentNullException("array");
87 }
89 {
90 throw new ArgumentOutOfRangeException("arrayIndex");
91 }
93 if (parsedValues == null)
94 {
95 return;
96 }
98 {
99 if (arrayIndex == array.Length)
100 {
102 }
104 }
105 else
106 {
108 }
109 }
void CopyTo(KeyValuePair< TKey, TValue >[] array, int index)
object GetParsedValues(HeaderDescriptor descriptor)
static string net_http_copyto_array_too_small
Definition SR.cs:18
Definition SR.cs:7

References System.Net.Http.Headers.HttpHeaderValueCollection< T >._descriptor, System.Net.Http.Headers.HttpHeaderValueCollection< T >._store, System.array, System.arrayIndex, System.Collections.Generic.Dictionary< TKey, TValue >.CopyTo(), System.Net.Http.Headers.HttpHeaders.GetParsedValues(), System.list, System.SR.net_http_copyto_array_too_small, and System.T.