SendText() публичный статический Метод

Sends a String of characters (text) to the Client. The string is followed by a carriage return and line feed.
public static SendText ( string text ) : bool
text string
Результат bool
Пример #1
0
 public static bool SendText(string format, params object[] args)
 {
     return(Client.SendText(string.Format(format, args)));
 }