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

◆ Intersect() [1/2]

EndpointPermission System.Net.EndpointPermission.Intersect ( EndpointPermission perm)
inlinepackage

Definition at line 145 of file EndpointPermission.cs.

146 {
147 while (perm != null)
148 {
149 int num = this.port;
150 int num2 = perm.port;
151 TransportType transportType = this.transport;
152 TransportType transportType2 = perm.transport;
153 if (this.IntersectHostname(perm) == null || (this.hasWildcard && perm.hasWildcard))
154 {
155 return;
156 }
157 }
158 }
class f__AnonymousType0<< Count > j__TPar
string IntersectHostname(EndpointPermission perm)

References System.Net.EndpointPermission.hasWildcard, System.Net.EndpointPermission.IntersectHostname(), j__TPar, System.Net.EndpointPermission.port, and System.Net.EndpointPermission.transport.