Class SpecimenCreatedEventArgs
Event arguments about a created specimen.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: AutoFixture.Kernel
Assembly: AutoFixture.dll
Syntax
public class SpecimenCreatedEventArgs : RequestTraceEventArgs
Constructors
| Improve this Doc View SourceSpecimenCreatedEventArgs(Object, Object, Int32)
Initializes a new instance of the SpecimenCreatedEventArgs class with the supplied values.
Declaration
public SpecimenCreatedEventArgs(object request, object specimen, int depth)
Parameters
Type | Name | Description |
---|---|---|
System.Object | request | A request for a specimen. |
System.Object | specimen | The specimen that was created base on |
System.Int32 | depth | The recursion depth at which |
Properties
| Improve this Doc View SourceSpecimen
Gets the specimen that was created from Request.
Declaration
public object Specimen { get; }
Property Value
Type | Description |
---|---|
System.Object |