StopIosProxy() 개인적인 메소드

private StopIosProxy ( ushort localPort ) : void
localPort ushort
리턴 void
예제 #1
0
 public void StopRemoteSupport()
 {
     if (this.remotePort != -1)
     {
         Usbmuxd.StopIosProxy((ushort)this.remotePort);
     }
     this.remotePort = -1;
 }
예제 #2
0
 public void StopPlayerConnectionSupport()
 {
     if (this.playerPort != -1)
     {
         Usbmuxd.StopIosProxy((ushort)this.playerPort);
     }
     this.playerPort = -1;
 }