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

◆ InternalSetNameMethod

Func<Cookie, string, bool> System.Net.CookieParser.InternalSetNameMethod
staticgetprivate

Definition at line 15 of file CookieParser.cs.

16 {
17 get
18 {
19 if (s_internalSetNameMethod == null)
20 {
21 MethodInfo method = typeof(Cookie).GetMethod("InternalSetName", BindingFlags.Instance | BindingFlags.NonPublic);
22 s_internalSetNameMethod = (Func<Cookie, string, bool>)Delegate.CreateDelegate(typeof(Func<Cookie, string, bool>), method);
23 }
25 }
26 }
static Func< Cookie, string, bool > s_internalSetNameMethod

Referenced by System.Net.CookieParser.Get(), and System.Net.CookieParser.GetServer().