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

◆ InnerHandler

HttpMessageHandler? System.Net.Http.DelegatingHandler.InnerHandler
getsetinherited

Definition at line 15 of file DelegatingHandler.cs.

16 {
17 get
18 {
19 return _innerHandler;
20 }
21 [param: DisallowNull]
22 set
23 {
24 if (value == null)
25 {
26 throw new ArgumentNullException("value");
27 }
29 if (System.Net.NetEventSource.Log.IsEnabled())
30 {
31 System.Net.NetEventSource.Associate(this, value, "InnerHandler");
32 }
34 }
35 }
static readonly System.Net.NetEventSource Log
static void Associate(object first, object second, [CallerMemberName] string memberName=null)

Referenced by System.Net.Http.DelegatingHandler.DelegatingHandler().