Show / Hide Table of Contents

Class ParameterDefinition

Inheritance
Object
ParameterDefinition
Namespace: BenchmarkDotNet.Parameters
Assembly: BenchmarkDotNet.dll
Syntax
public class ParameterDefinition

Constructors

ParameterDefinition(String, Boolean, Object[], Boolean, Type, Int32)

Declaration
public ParameterDefinition(string name, bool isStatic, object[] values, bool isArgument, Type parameterType, int priorityInCategory)
Parameters
Type Name Description
String name
Boolean isStatic
Object[] values
Boolean isArgument
Type parameterType
Int32 priorityInCategory

Properties

IsArgument

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

IsStatic

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

Name

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

ParameterType

Declaration
public Type ParameterType { get; }
Property Value
Type Description
Type

PriorityInCategory

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

Values

Declaration
public object[] Values { get; }
Property Value
Type Description
Object[]
In This Article
Back to top Copyright © 2013–2021 .NET Foundation and contributors