Class RequestTraceEventArgs
Event args about a request for a 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 RequestTraceEventArgs : EventArgs
Constructors
| Improve this Doc View SourceRequestTraceEventArgs(Object, Int32)
Initializes a new instance of the RequestTraceEventArgs class with the supplied values.
Declaration
public RequestTraceEventArgs(object request, int depth)
Parameters
Type | Name | Description |
---|---|---|
System.Object | request | A request for a specimen. |
System.Int32 | depth | The recursion depth at which |
Properties
| Improve this Doc View SourceDepth
Gets the recursion depth at which Request occurred.
Declaration
public int Depth { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Request
Gets the original request for a specimen.
Declaration
public object Request { get; }
Property Value
Type | Description |
---|---|
System.Object |