Sockets[Write] - ソケット接続へのテキストデータの書き込み
使い方
Write(sid, text)
パラメータ
sid - 有効な開かれたソケット ID
text - 文字列; ソケットへ書き込むテキストデータ
|
説明
|
|
•
|
手続き Write は、ソケット接続に対して、Maple の文字列の形式で、テキストデータを書き込むために使用されます。
|
•
|
引数 sid は、開かれたソケット接続に関する有効なソケット ID を表します。引数 text は、ソケット接続に書き込みたいデータ(Maple の文字列の形式)を表します。
|
•
|
Write は、text 引数内の全てのデータを、sid で指定されたソケットへ書き込もうと試みます。書き込みの操作に成功すると、値 true が返されます。それ以外の場合には、Write は値 false を返します。
|
|
|
例
|
|
>
|
with( Sockets ):
sid := Open( "localhost", "echo" ):
Write( sid, "Some data to send to the echo server" );
|
| (2.1) |
>
|
Read( sid ); # verify it got there
|
| (2.2) |
| (2.3) |
|
|
Download Help Document
Was this information helpful?