 | | WideStudio/MWT Class Reference
| |
Class Name
WSCvssocket
Specification of methods
read Function Description
- Form
- long read(WSCuchar* buffer,long size)
- Function
- Read data from a connected socket in the event procedure initiated by the ACTIVATE event
- Description
-
- Parameters
-
(in)WSCuchar* buffer | Data reading buffer |
(in)long len | Data reading buffer length |
- Return value
- Reading data length (bytes)
- Notice
- When it is used in other than the procedure started by the ACTIVATE event,
it results in an error because it has not established a connection.
- Samples
-
char buffer[128];
long ret = newvsso_000->read(buffer,128);
write Function Description
- Form
- long write(WSCuchar* buffer,long size)
- Function
- Write data to a connected socket in the event procedure starting by the ACTIVATE event
- Description
-
- Parameters
-
(in)WSCuchar* buffer | Writing data buffer |
(in)long len | Writing data buffer length |
- Return value
- Written data length (bytes)
- Notice
- When it is used in other than the procedure started by the ACTIVATE event,
it results in an error because it has not established a connection.
- Samples
-
char buffer[128];
strcpy(buffer,"send data...");
long ret = newvsso_000->write(buffer,128);
Document Release 3.90 For use with WideStudio/MWT Release 3.90, Summer 2005 WideStudio/MWT Home | Up to Copyright(C) WideStudio/MWT Development Team, 1999-2005 | | Last modified: June 25, 2005 | |