Activity.AddEvent(ActivityEvent) Method

Definition

Adds the specified activity event to the events list.

public:
 System::Diagnostics::Activity ^ AddEvent(System::Diagnostics::ActivityEvent e);
public System.Diagnostics.Activity AddEvent (System.Diagnostics.ActivityEvent e);
member this.AddEvent : System.Diagnostics.ActivityEvent -> System.Diagnostics.Activity
Public Function AddEvent (e As ActivityEvent) As Activity

Parameters

e
ActivityEvent

The activity event to add.

Returns

this for convenient chaining.

Remarks

AddEvent is not intended for adding many events over a long period of time, because the event objects are stored in memory. Adding too many events to the same Activity object can impact app performance. Callers should either restrict the number of events added to the same Activity object or choose another logging mechanism, for example, Microsoft.Extensions.Logging.

Applies to