Property ActivatedAt
ActivatedAt
Gets or sets the UTC timestamp when the skill was activated.
public DateTime ActivatedAt { get; set; }
Property Value
Examples
Checking activation time:
var context = activator.Activate("code-review");
Console.WriteLine($"Activated at: {context.ActivatedAt:u}");