PeerCastStation.UI.PortMapperMonitor.RemovePortOnDevice C# (CSharp) 메소드

RemovePortOnDevice() 개인적인 메소드

private RemovePortOnDevice ( NatDevice device, int port ) : void
device NatDevice
port int
리턴 void
    private void RemovePortOnDevice(NatDevice device, int port)
    {
      device.UnmapAsync(MappingProtocol.TCP, port, cancelSource.Token);
      device.UnmapAsync(MappingProtocol.UDP, port, cancelSource.Token);
    }