/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/Workspaces/WorkspacesEditor/Telemetry/DeleteEvent.cs
25 строк
775 B
Yu Leng
[AOT] Fix issues when we want to log some telemetry in AOT version (#40148)
20 июн 2025, 09:10
Не верифицирован
20 июн 2025, 09:10
250be2d
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics.CodeAnalysis; using System.Diagnostics.Tracing; using Microsoft.PowerToys.Telemetry; using Microsoft.PowerToys.Telemetry.Events; namespace WorkspacesEditor.Telemetry { [EventData] [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)] public class DeleteEvent : EventBase, IEvent { public DeleteEvent() { EventName = "Workspaces_DeleteEvent"; } public bool Successful { get; set; } public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServiceUsage; } }