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

◆ ParseWithoutValidation()

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

Definition at line 117 of file GenericHeaderParser.cs.

118 {
119 if (HttpRuleParser.ContainsNewLine(value, startIndex))
120 {
121 parsedValue = null;
122 return 0;
123 }
124 return ((string)(parsedValue = value.Substring(startIndex))).Length;
125 }

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