Skip to content

IActionPipe

Namespace: VideoCataloger

Type: Interface

Interface to send a response back to the external application connected to the action pipe. The action pipe is a request/response channel: an external application (for example the bundled FVC.exe command line tool) sends a message that starts the configured pipe action, the message is passed to the script as its arguments parameter, and the script sends its response back through this interface. There is no Read function because the incoming message has already been delivered as the script arguments.

Definition

public interface IActionPipe

Methods

Method Description
WriteLine(string) Write a line of text to the connected action pipe client
Write(string) Write text to the connected action pipe client

WriteLine

Write a line of text to the connected action pipe client

void WriteLine(string line)

Parameters:

Name Type Description
line String Text to be output

Write

Write text to the connected action pipe client

void Write(string line)

Parameters:

Name Type Description
line String Text to be written