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

◆ Referer

string System.Net.HttpWebRequest.Referer
getset

Definition at line 849 of file HttpWebRequest.cs.

850 {
851 get
852 {
853 return this.webHeaders["Referer"];
854 }
855 set
856 {
857 this.CheckRequestStarted();
858 if (value != null && value.Trim()._stringLength != 0)
859 {
860 this.webHeaders.SetInternal("Referer", value);
861 return;
862 }
863 this.webHeaders.RemoveInternal("Referer");
864 }
865 }
WebHeaderCollection webHeaders
void SetInternal(HttpResponseHeader header, string value)