Class ProfilerOptions
Specifies options that is related to Profiler operations.
Namespace: Cuemon.Diagnostics
Assembly: Cuemon.Core.dll
Syntax
public class ProfilerOptions
Constructors
| Improve this DocProfilerOptions()
Initializes a new instance of the ProfilerOptions class.
Declaration
protected ProfilerOptions()
Remarks
The following table shows the initial property values for an instance of ProfilerOptions.
Property | Initial Value |
---|---|
MethodDescriptor | null |
RuntimeParameters | null |
Properties
| Improve this DocMethodDescriptor
Gets or sets the callback function delegate that resolves a MethodDescriptor.
Declaration
public Func<MethodDescriptor> MethodDescriptor { get; set; }
Property Value
Type | Description |
---|---|
System.Func<MethodDescriptor> | The callback function delegate that resolves a MethodDescriptor. |
RuntimeParameters
Gets or sets an System.Object array that represents runtime values.
Declaration
public object[] RuntimeParameters { get; set; }
Property Value
Type | Description |
---|---|
System.Object[] | An System.Object array that represents runtime values. |