Class ReadOnlyCollectionRelay

Namespace: AutoFixture.Kernel
Assembly: AutoFixture.dll

Relays a request for an IReadOnlyCollection%601 to a request for a List%601 and retuns the result.

[Obsolete("This relay has been deprecated, use \"new TypeRelay(typeof(IReadOnlyCollection<>), typeof(List<>))\" instead.")]
public class ReadOnlyCollectionRelay : ISpecimenBuilder

Inheritance

objectReadOnlyCollectionRelay

Implements

ISpecimenBuilder

Inherited Members

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

Extension Methods

SpecimenFactory.Create<T>(ISpecimenBuilder), SpecimenFactory.CreateMany<T>(ISpecimenBuilder), SpecimenFactory.CreateMany<T>(ISpecimenBuilder, int), SpecimenCommand.Do<T>(ISpecimenBuilder, Action<T>), SpecimenCommand.Do<T1, T2>(ISpecimenBuilder, Action<T1, T2>), SpecimenCommand.Do<T1, T2, T3>(ISpecimenBuilder, Action<T1, T2, T3>), SpecimenCommand.Do<T1, T2, T3, T4>(ISpecimenBuilder, Action<T1, T2, T3, T4>), SpecimenQuery.Get<T, TResult>(ISpecimenBuilder, Func<T, TResult>), SpecimenQuery.Get<T1, T2, TResult>(ISpecimenBuilder, Func<T1, T2, TResult>), SpecimenQuery.Get<T1, T2, T3, TResult>(ISpecimenBuilder, Func<T1, T2, T3, TResult>), SpecimenQuery.Get<T1, T2, T3, T4, TResult>(ISpecimenBuilder, Func<T1, T2, T3, T4, TResult>), CustomizationExtensions.ToCustomization(ISpecimenBuilder)

Constructors

ReadOnlyCollectionRelay()

public ReadOnlyCollectionRelay()

Methods

Create(object, ISpecimenContext)

Creates a new specimen based on a request.

public object Create(object request, ISpecimenContext context)

Parameters

request object

The request that describes what to create.

context ISpecimenContext

A context that can be used to create other specimens.

Returns

object

A populated IReadOnlyCollection%601 of the appropriate item type if possible; otherwise a NoSpecimen instance.

Remarks

If request is a request for an `IReadOnlyCollection%601` and context can satisfy a request for a populated specimen of that type, this value will be returned. If not, the return value is a `NoSpecimen` instance.