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

◆ RemoveOperation()

void System.Net.ServicePointScheduler.RemoveOperation ( WebOperation operation)
inlineprivate

Definition at line 201 of file ServicePointScheduler.cs.

202 {
203 global::System.Collections.Generic.LinkedListNode head = this.operations.head;
204 if (head != null)
205 {
206 global::System.Collections.Generic.LinkedListNode next = head.Next;
207 this.operations.Remove(head);
208 while (next != null)
209 {
210 }
211 }
212 }
global::System.Collections.Generic.LinkedList< ValueTuple< ServicePointScheduler.ConnectionGroup, WebOperation > > operations

References System.Net.ServicePointScheduler.operations.