|
PortController.NET
SimulateReceivedXon Method
Causes transmission to act as if an XON character has been received.
Syntax
[Visual Basic]
object.SimulateReceivedXon
[C#]
object.SimulateReceivedXon()
[C++]
object->SimulateReceivedXon()
Parameters
object
An object expression that evaluates to a PortController object.
Return Value
None
Remarks
This method simulates the receipt of an Xon character from a remote device.
This resumes the sending of data from the transmission queue to the remote device.
Errors
Calling the SimulateReceivedXon method while the port is closed is not permitted and
will cause PortController to throw a "Port is closed" exception.
Example
[Visual Basic]
myPortController.SimulateReceivedXon
[C#]
myPortController.SimulateReceivedXon();
[C++]
myPortController->SimulateReceivedXon();
See Also
SimulateReceivedXoff method | Break property | Dsr property | Rts property
|