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

◆ ToString() [2/2]

static void System.Net.Http.Headers.NameValueHeaderValue.ToString ( ObjectCollection< NameValueHeaderValue > values,
char separator,
bool leadingSeparator,
StringBuilder destination )
inlinestaticpackageinherited

Definition at line 129 of file NameValueHeaderValue.cs.

130 {
131 if (values == null || values.Count == 0)
132 {
133 return;
134 }
136 {
137 if (leadingSeparator || destination.Length > 0)
138 {
139 destination.Append(separator);
140 destination.Append(' ');
141 }
142 value.AddToStringBuilder(destination);
143 }
144 }

References System.destination, System.value, and System.values.