CSocket.GetLine Method | |
Extract the first line from the socket data received via the current connection.
Namespace:
VO
Assembly:
VOInternetClasses (in VOInternetClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD GetLine() AS STRING
public virtual string GetLine()
Request Example
View SourceReturn Value
Type:
String
String containing the received line of data, if successful; otherwise, NULL_STRING
Remarks
This method extracts the first line from input data.
Tip |
---|
GetLine() can be used for TCP sockets only, because it assumes that a connection is already established. |
Examples
See the CSocket:Accept() example.
See Also