Class Transmit
A class that represents a VHI Transmit command.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class Transmit : Command
Constructors
Transmit(string)
Constructs a new Transmit command using DONT_WAIT_FOR_ECHO.
Declaration
public Transmit(string text)
Parameters
Type | Name | Description |
---|---|---|
string | text | the text to transmit |
Transmit(string, EchoType)
Constructs a new Transmit command.
Declaration
public Transmit(string text, EchoType waitForEcho)
Parameters
Type | Name | Description |
---|---|---|
string | text | the text to transmit |
EchoType | waitForEcho | type of wait for echo to perform. See Transmit(string, EchoType). |
Properties
Name
Gets the command name.
Declaration
public override string Name { get; }
Property Value
Type | Description |
---|---|
string | the command name |
Overrides
Text
Gets the text to transmit.
Declaration
public virtual string Text { get; }
Property Value
Type | Description |
---|---|
string | the text to transmit |
WaitForEcho
Gets the wait for echo mode.
Declaration
public virtual EchoType WaitForEcho { get; }
Property Value
Type | Description |
---|---|
EchoType | type of wait for echo to perform. See EchoType |