Class CallResultData.ArgumentValue

Namespace: AutoFixture.AutoNSubstitute.CustomCallHandler
Assembly: AutoFixture.AutoNSubstitute.dll

Intance represents resolved argument value by index.

public class CallResultData.ArgumentValue

Inheritance

objectCallResultData.ArgumentValue

Inherited Members

object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

ArgumentValue(int, object)

Creates an instance of ArgumentValue.

public ArgumentValue(int index, object value)

Parameters

index int

value object

Properties

Index

Argument index starting from zero.

public int Index { get; }

Property Value

int

Value

Argument value.

public object Value { get; }

Property Value

object