terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Expect

string System.Net.HttpWebRequest.Expect
getset

Definition at line 515 of file HttpWebRequest.cs.

516 {
517 get
518 {
519 return this.webHeaders["Expect"];
520 }
521 set
522 {
523 this.CheckRequestStarted();
524 if (value != null)
525 {
526 string text = value.Trim().ToLower();
527 if (text != null && text._stringLength != 0)
528 {
529 bool flag = text == "100-continue";
530 this.webHeaders.CheckUpdate("Expect", value);
531 return;
532 }
533 }
534 this.webHeaders.RemoveInternal("Expect");
535 }
536 }
WebHeaderCollection webHeaders
void CheckUpdate(string name, string value)