method

with_binary

v1_9_1_378 - Show latest stable - Class: Net::FTP
with_binary(newmode)
private

No documentation available.

# File lib/net/ftp.rb, line 150
    def with_binary(newmode)
      oldmode = binary
      self.binary = newmode
      begin
        yield
      ensure
        self.binary = oldmode
      end
    end