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

◆ TryParse()

static bool System.Net.Http.Headers.ViaHeaderValue.TryParse ( [NotNullWhen(true)] string? input,
[NotNullWhen(true)] out ViaHeaderValue? parsedValue )
inlinestatic

Definition at line 113 of file ViaHeaderValue.cs.

114 {
115 int index = 0;
116 parsedValue = null;
117 if (GenericHeaderParser.SingleValueViaParser.TryParseValue(input, null, ref index, out var parsedValue2))
118 {
119 parsedValue = (ViaHeaderValue)parsedValue2;
120 return true;
121 }
122 return false;
123 }
ViaHeaderValue(string protocolVersion, string receivedBy)

References System.Net.Http.Headers.ViaHeaderValue.ViaHeaderValue(), System.index, System.input, and System.Net.Http.Headers.GenericHeaderParser.SingleValueViaParser.