Show / Hide Table of Contents

Class Conclusion

Inheritance
Object
Conclusion
Implements
IEquatable<Conclusion>
Namespace: BenchmarkDotNet.Analysers
Assembly: BenchmarkDotNet.dll
Syntax
public sealed class Conclusion : IEquatable<Conclusion>

Properties

AnalyserId

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

Kind

Declaration
public ConclusionKind Kind { get; }
Property Value
Type Description
ConclusionKind

Mergeable

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

Message

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

Report

Declaration
public BenchmarkReport Report { get; }
Property Value
Type Description
BenchmarkReport

Methods

CreateError(String, String, BenchmarkReport, Boolean)

Declaration
public static Conclusion CreateError(string analyserId, string message, BenchmarkReport report = null, bool mergeable = true)
Parameters
Type Name Description
String analyserId
String message
BenchmarkReport report
Boolean mergeable
Returns
Type Description
Conclusion

CreateHint(String, String, BenchmarkReport, Boolean)

Declaration
public static Conclusion CreateHint(string analyserId, string message, BenchmarkReport report = null, bool mergeable = true)
Parameters
Type Name Description
String analyserId
String message
BenchmarkReport report
Boolean mergeable
Returns
Type Description
Conclusion

CreateWarning(String, String, BenchmarkReport, Boolean)

Declaration
public static Conclusion CreateWarning(string analyserId, string message, BenchmarkReport report = null, bool mergeable = true)
Parameters
Type Name Description
String analyserId
String message
BenchmarkReport report
Boolean mergeable
Returns
Type Description
Conclusion

Equals(Conclusion)

Declaration
public bool Equals(Conclusion other)
Parameters
Type Name Description
Conclusion other
Returns
Type Description
Boolean

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
Object obj
Returns
Type Description
Boolean
Overrides
Object.Equals(Object)

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
Int32
Overrides
Object.GetHashCode()

Implements

System.IEquatable<T>
In This Article
Back to top Copyright © 2013–2021 .NET Foundation and contributors