Show / Hide Table of Contents

Class BenchmarkAttribute

Inheritance
Object
Attribute
BenchmarkAttribute
Inherited Members
Attribute.Equals(Object)
Attribute.GetCustomAttribute(Assembly, Type)
Attribute.GetCustomAttribute(Assembly, Type, Boolean)
Attribute.GetCustomAttribute(MemberInfo, Type)
Attribute.GetCustomAttribute(MemberInfo, Type, Boolean)
Attribute.GetCustomAttribute(Module, Type)
Attribute.GetCustomAttribute(Module, Type, Boolean)
Attribute.GetCustomAttribute(ParameterInfo, Type)
Attribute.GetCustomAttribute(ParameterInfo, Type, Boolean)
Attribute.GetCustomAttributes(Assembly)
Attribute.GetCustomAttributes(Assembly, Boolean)
Attribute.GetCustomAttributes(Assembly, Type)
Attribute.GetCustomAttributes(Assembly, Type, Boolean)
Attribute.GetCustomAttributes(MemberInfo)
Attribute.GetCustomAttributes(MemberInfo, Boolean)
Attribute.GetCustomAttributes(MemberInfo, Type)
Attribute.GetCustomAttributes(MemberInfo, Type, Boolean)
Attribute.GetCustomAttributes(Module)
Attribute.GetCustomAttributes(Module, Boolean)
Attribute.GetCustomAttributes(Module, Type)
Attribute.GetCustomAttributes(Module, Type, Boolean)
Attribute.GetCustomAttributes(ParameterInfo)
Attribute.GetCustomAttributes(ParameterInfo, Boolean)
Attribute.GetCustomAttributes(ParameterInfo, Type)
Attribute.GetCustomAttributes(ParameterInfo, Type, Boolean)
Attribute.GetHashCode()
Attribute.IsDefaultAttribute()
Attribute.IsDefined(Assembly, Type)
Attribute.IsDefined(Assembly, Type, Boolean)
Attribute.IsDefined(MemberInfo, Type)
Attribute.IsDefined(MemberInfo, Type, Boolean)
Attribute.IsDefined(Module, Type)
Attribute.IsDefined(Module, Type, Boolean)
Attribute.IsDefined(ParameterInfo, Type)
Attribute.IsDefined(ParameterInfo, Type, Boolean)
Attribute.Match(Object)
Attribute.TypeId
Namespace: BenchmarkDotNet.Attributes
Assembly: BenchmarkDotNet.Annotations.dll
Syntax
[AttributeUsage(AttributeTargets.Method)]
public class BenchmarkAttribute : Attribute

Constructors

BenchmarkAttribute(Int32, String)

Declaration
public BenchmarkAttribute(int sourceCodeLineNumber = 0, string sourceCodeFile = "")
Parameters
Type Name Description
Int32 sourceCodeLineNumber
String sourceCodeFile

Properties

Baseline

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

Description

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

OperationsPerInvoke

Declaration
public int OperationsPerInvoke { get; set; }
Property Value
Type Description
Int32

SourceCodeFile

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

SourceCodeLineNumber

Declaration
public int SourceCodeLineNumber { get; }
Property Value
Type Description
Int32
In This Article
Back to top Copyright © 2013–2021 .NET Foundation and contributors