Show / Hide Table of Contents

Struct DotNetCliCommandResult

Inherited Members
ValueType.Equals(Object)
ValueType.GetHashCode()
ValueType.ToString()
Namespace: BenchmarkDotNet.Toolchains.DotNetCli
Assembly: BenchmarkDotNet.dll
Syntax
public struct DotNetCliCommandResult

Properties

AllInformation

Declaration
public readonly string AllInformation { get; }
Property Value
Type Description
String

ExecutionTime

Declaration
public readonly TimeSpan ExecutionTime { get; }
Property Value
Type Description
TimeSpan

HasNonEmptyErrorMessage

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

IsSuccess

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

StandardError

Declaration
public readonly string StandardError { get; }
Property Value
Type Description
String

StandardOutput

Declaration
public readonly string StandardOutput { get; }
Property Value
Type Description
String

Methods

Failure(TimeSpan, String, String)

Declaration
public static DotNetCliCommandResult Failure(TimeSpan time, string standardError, string standardOutput)
Parameters
Type Name Description
TimeSpan time
String standardError
String standardOutput
Returns
Type Description
DotNetCliCommandResult

Success(TimeSpan, String)

Declaration
public static DotNetCliCommandResult Success(TimeSpan time, string standardOutput)
Parameters
Type Name Description
TimeSpan time
String standardOutput
Returns
Type Description
DotNetCliCommandResult

ToBuildResult(GenerateResult)

Declaration
public BuildResult ToBuildResult(GenerateResult generateResult)
Parameters
Type Name Description
GenerateResult generateResult
Returns
Type Description
BuildResult
In This Article
Back to top Copyright © 2013–2021 .NET Foundation and contributors