Wide Studio Object Reference

Wide Studio Home
Up to


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 staring by the ACTIVATE
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 result in an error because of not establishing the 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 staring by the ACTIVATE
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 result in an error because of not establishing the connection.
Samples
  char buffer[128];
  strcpy(buffer,"send data...");
  long ret = newvsso_000->write(buffer,128);


Document Release 3.20

For Use with Wide Studio Release 3.20, Spring 2003


Wide Stuido Home | Up to

Copyright(C) T. Hirabayashi, 1999-2003 Last modified: February 3, 2003