PeerCastStation.UI.PortMapperMonitor.RemovePortOnDevice C# (CSharp) Méthode

RemovePortOnDevice() private méthode

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