Issues a command to POP server and reads response.

Namespace: Jscape.Email
Assembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0

Syntax

C#
public string IssueCommand(
	string command
)
Visual Basic
Public Function IssueCommand ( _
	command As String _
) As String
Visual C++
public:
String^ IssueCommand(
	String^ command
)

Parameters

command
Type: System..::..String
The command to issue.

Return Value

The POP server response.

Examples

This example reads the response of the STAT command.
CopyPop IssueCommand
String response = myPop.IssueCommand("STAT");

CopyPop IssueCommand
Dim response As String = myPop.IssueCommand("STAT")

See Also