Table of Contents

Class CaptureProcess

Namespace
AllenNeuralDynamics.Core
Assembly
AllenNeuralDynamics.Core.dll

Represents an operator that starts a new system process with the specified file name and command-line arguments.

public class CaptureProcess : Source<string>
Inheritance
CaptureProcess
Inherited Members

Properties

Arguments

public string Arguments { get; set; }

Property Value

string

FileName

[FileNameFilter("Executable files|*.exe|All Files|*.*")]
public string FileName { get; set; }

Property Value

string

Methods

Generate()

Generates an observable sequence of data elements.

public override IObservable<string> Generate()

Returns

IObservable<string>

An observable sequence of data elements of type string.

Generate<TSource>(IObservable<TSource>)

public IObservable<string> Generate<TSource>(IObservable<TSource> source)

Parameters

source IObservable<TSource>

Returns

IObservable<string>

Type Parameters

TSource