You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="distinctId">The identifier you use for the user.</param>
78
78
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
79
-
/// <param name="timestamp">The timestamp when the event occurred.</param>
79
+
/// <param name="timestamp">The timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
80
80
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
/// <param name="distinctId">The identifier you use for the user.</param>
99
99
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
100
-
/// <param name="timestamp">The timestamp when the event occurred.</param>
100
+
/// <param name="timestamp">The timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
101
101
/// <param name="properties">Optional: The properties to send along with the event.</param>
102
102
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
/// <param name="distinctId">The identifier you use for the user.</param>
122
122
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
123
-
/// <param name="timestamp">The timestamp when the event occurred.</param>
123
+
/// <param name="timestamp">The timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
124
124
/// <param name="groups">A set of groups to send with the event. The groups are identified by their group_type and group_key.</param>
125
125
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
/// <param name="distinctId">The identifier you use for the user.</param>
145
145
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
146
-
/// <param name="timestamp">The timestamp when the event occurred.</param>
146
+
/// <param name="timestamp">The timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
147
147
/// <param name="properties">Optional: The properties to send along with the event.</param>
148
148
/// <param name="groups">Optional: Context of what groups are related to this event, example: { ["company"] = "id:5" }. Can be used to analyze companies instead of users.</param>
149
149
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
/// <param name="distinctId">The identifier you use for the user.</param>
170
170
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
171
-
/// <param name="timestamp">The timestamp when the event occurred.</param>
171
+
/// <param name="timestamp">The timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
172
172
/// <param name="sendFeatureFlags">If <c>true</c>, feature flags are sent with the captured event.</param>
173
173
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
174
174
[Obsolete("Prefer Capture(..., flags: snapshot, timestamp: timestamp) using a FeatureFlagEvaluations snapshot from EvaluateFlagsAsync. This overload will be removed in a future major version.",error:false)]
/// <param name="distinctId">The identifier you use for the user.</param>
196
196
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
197
-
/// <param name="timestamp">The timestamp when the event occurred.</param>
197
+
/// <param name="timestamp">The timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
198
198
/// <param name="properties">Optional: The properties to send along with the event.</param>
199
199
/// <param name="groups">Optional: Context of what groups are related to this event, example: { ["company"] = "id:5" }. Can be used to analyze companies instead of users.</param>
200
200
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
/// <param name="exception">The exception object that you want to capture.</param>
170
170
/// <param name="distinctId">The identifier you use for the user.</param>
171
-
/// <param name="timestamp">The timestamp when the event occurred.</param>
171
+
/// <param name="timestamp">The timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
172
172
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
173
173
/// <returns><c>true</c> if the exception event was successfully enqueued. Otherwise <c>false</c>.</returns>
174
174
[Obsolete("Prefer CaptureException(..., flags: snapshot, timestamp: timestamp) using a FeatureFlagEvaluations snapshot from EvaluateFlagsAsync. This overload will be removed in a future major version.",error:false)]
@@ -194,7 +194,7 @@ public static bool CaptureException(
/// <param name="properties">Optional: The properties to send along with the event.</param>
94
94
/// <param name="groups">Optional: Context of what groups are related to this event, example: { ["company"] = "id:5" }. Can be used to analyze companies instead of users.</param>
95
95
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
96
-
/// <param name="timestamp">Optional: Custom timestamp when the event occurred. If not provided, uses current time.</param>
96
+
/// <param name="timestamp">Optional: Custom timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant. If not provided, uses current time.</param>
97
97
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
98
98
[Obsolete("Prefer Capture(..., flags: snapshot, ...) using a FeatureFlagEvaluations snapshot from EvaluateFlagsAsync — same payload, no extra /flags request. This overload will be removed in a future major version.",error:false)]
99
99
boolCapture(
@@ -115,7 +115,7 @@ bool Capture(
115
115
/// <param name="properties">Optional: The properties to send along with the event.</param>
116
116
/// <param name="groups">Optional: Context of what groups are related to this event, example: { ["company"] = "id:5" }. Can be used to analyze companies instead of users.</param>
117
117
/// <param name="flags">A snapshot of feature flag evaluations. When non-null, <c>$feature/<key></c> and <c>$active_feature_flags</c> are attached from the snapshot — no <c>/flags</c> call is made.</param>
118
-
/// <param name="timestamp">Optional: Custom timestamp when the event occurred. If not provided, uses current time.</param>
118
+
/// <param name="timestamp">Optional: Custom timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant. If not provided, uses current time.</param>
119
119
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
120
120
boolCapture(
121
121
stringdistinctId,
@@ -139,7 +139,7 @@ bool Capture(
139
139
/// <param name="properties">Optional: The properties to send along with the event.</param>
140
140
/// <param name="groups">Optional: Context of what groups are related to this event, example: { ["company"] = "id:5" }. Can be used to analyze companies instead of users.</param>
141
141
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
142
-
/// <param name="timestamp">Optional: Custom timestamp when the event occurred. If not provided, uses current time</param>
142
+
/// <param name="timestamp">Optional: Custom timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant. If not provided, uses current time.</param>
143
143
/// <returns><c>true</c> if the exception event was successfully enqueued. Otherwise <c>false</c>.</returns>
144
144
[Obsolete("Prefer CaptureException(..., flags: snapshot, ...) using a FeatureFlagEvaluations snapshot from EvaluateFlagsAsync — same payload, no extra /flags request. This overload will be removed in a future major version.",error:false)]
145
145
boolCaptureException(
@@ -158,7 +158,7 @@ bool CaptureException(
158
158
/// <param name="properties">Optional: The properties to send along with the event.</param>
159
159
/// <param name="groups">Optional: Context of what groups are related to this event.</param>
160
160
/// <param name="flags">A snapshot of feature flag evaluations. When non-null, <c>$feature/<key></c> and <c>$active_feature_flags</c> are attached from the snapshot — no <c>/flags</c> call is made.</param>
161
-
/// <param name="timestamp">Optional: Custom timestamp when the event occurred.</param>
161
+
/// <param name="timestamp">Optional: Custom timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
162
162
/// <returns><c>true</c> if the exception event was successfully enqueued. Otherwise <c>false</c>.</returns>
/// <param name="properties">Optional properties to send along with the event.</param>
90
90
/// <param name="groups">Optional groups related to this event.</param>
91
91
/// <param name="sendFeatureFlags">Whether to send feature flag data with the event.</param>
92
-
/// <param name="timestamp">Optional timestamp when the event occurred.</param>
92
+
/// <param name="timestamp">Optional timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
93
93
/// <returns><c>true</c> if the event was successfully enqueued; otherwise <c>false</c>.</returns>
/// <param name="properties">Optional properties to send along with the event.</param>
120
120
/// <param name="groups">Optional groups related to this event.</param>
121
121
/// <param name="sendFeatureFlags">Whether to send feature flag data with the event.</param>
122
-
/// <param name="timestamp">Optional timestamp when the event occurred.</param>
122
+
/// <param name="timestamp">Optional timestamp when the event occurred. UTC is preferred; non-UTC input is converted to the equivalent UTC instant.</param>
123
123
/// <returns><c>true</c> if the exception event was successfully enqueued; otherwise <c>false</c>.</returns>
0 commit comments