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

◆ ParseHost()

static int System.Net.Http.Headers.GenericHeaderParser.ParseHost ( string value,
int startIndex,
out object parsedValue )
inlinestaticprivate

Definition at line 127 of file GenericHeaderParser.cs.

128 {
129 string host;
130 int hostLength = HttpRuleParser.GetHostLength(value, startIndex, allowToken: false, out host);
131 parsedValue = host;
132 return hostLength;
133 }

References System.Net.Http.HttpRuleParser.GetHostLength(), System.startIndex, and System.value.