Method code for $connection.write_strings()

[Turn off line numbering]
  1: arg strings;
  2: 
  3: if (sender() != interface && sender() != (| class(interface) |))
  4:     throw(~perm, sender() + " cannot write this connection.");
  5: if (type(strings) != 'list)
  6:     throw(~type, "Argument must be a list of strings.");
  7: cwrite($buffer.from_strings(string));

// Created 22-Aug-1995 as a part of ColdCore, see: @help Credit

Tlon