Table of Contents

Class ExeResult

Namespace
Heleonix.Execution
Assembly
Heleonix.Execution.dll

Represents a result of execution of an executable.

public class ExeResult
Inheritance
ExeResult
Inherited Members

Constructors

ExeResult()

public ExeResult()

Properties

Error

Gets or sets the executable's error output.

public string Error { get; set; }

Property Value

string

ExitCode

Gets or sets the exit code.

public int ExitCode { get; set; }

Property Value

int

Output

Gets or sets the executable's output.

public string Output { get; set; }

Property Value

string

Methods

Equals(object)

Determines whether the specified object, is equal to this instance.

public override bool Equals(object obj)

Parameters

obj object

The object to compare with this instance.

Returns

bool

true if the specified object is equal to this instance; otherwise, false.

GetHashCode()

Returns a hash code for this instance.

public override int GetHashCode()

Returns

int

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

ToString()

Returns a string that represents this instance.

public override string ToString()

Returns

string

A string that represents this instance.