Show / Hide Table of Contents

Class ExecuteResult

Inheritance
Object
ExecuteResult
Namespace: BenchmarkDotNet.Toolchains.Results
Assembly: BenchmarkDotNet.dll
Syntax
public class ExecuteResult

Constructors

ExecuteResult(Boolean, Nullable<Int32>, Nullable<Int32>, IReadOnlyList<String>, IReadOnlyList<String>, Int32)

Declaration
public ExecuteResult(bool foundExecutable, int? exitCode, int? processId, IReadOnlyList<string> data, IReadOnlyList<string> linesWithExtraOutput, int launchIndex)
Parameters
Type Name Description
Boolean foundExecutable
Nullable<Int32> exitCode
Nullable<Int32> processId
IReadOnlyList<String> data
IReadOnlyList<String> linesWithExtraOutput
Int32 launchIndex

Properties

Errors

Declaration
public IReadOnlyList<string> Errors { get; }
Property Value
Type Description
IReadOnlyList<String>

ExitCode

Declaration
public int? ExitCode { get; }
Property Value
Type Description
Nullable<Int32>

ExtraOutput

Declaration
public IReadOnlyList<string> ExtraOutput { get; }
Property Value
Type Description
IReadOnlyList<String>

FoundExecutable

Declaration
public bool FoundExecutable { get; }
Property Value
Type Description
Boolean

IsSuccess

Declaration
public bool IsSuccess { get; }
Property Value
Type Description
Boolean

Measurements

Declaration
public IReadOnlyList<Measurement> Measurements { get; }
Property Value
Type Description
IReadOnlyList<Measurement>

ProcessId

Declaration
public int? ProcessId { get; }
Property Value
Type Description
Nullable<Int32>

Methods

LogIssues(ILogger, BuildResult)

Declaration
public void LogIssues(ILogger logger, BuildResult buildResult)
Parameters
Type Name Description
ILogger logger
BuildResult buildResult

ToString()

Declaration
public override string ToString()
Returns
Type Description
String
Overrides
Object.ToString()
In This Article
Back to top Copyright © 2013–2021 .NET Foundation and contributors