|
ProcessLauncherInput Method
|
Sends specified value as input to launched process, new line will be automatically appended to text.
Namespace: FileAdaptersAssembly: FileAdapters (in FileAdapters.dll) Version: 2.4.207-beta
Syntax [AdapterCommandAttribute("Sends specified value as input to launched process, new line will be automatically appended to text.")]
public void Input(
string value
)
<AdapterCommandAttribute("Sends specified value as input to launched process, new line will be automatically appended to text.")>
Public Sub Input (
value As String
)
public:
[AdapterCommandAttribute(L"Sends specified value as input to launched process, new line will be automatically appended to text.")]
void Input(
String^ value
)
[<AdapterCommandAttribute("Sends specified value as input to launched process, new line will be automatically appended to text.")>]
member Input :
value : string -> unit
View SourceParameters
- value String
- Input string to send to launched process.
Remarks
This only sends input to the parent process.
See Also