/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/ManagedTelemetry/Telemetry/Events/DebugEvent.cs
18 строк
608 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; namespace Microsoft.PowerToys.Telemetry.Events { [EventData] [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)] public class DebugEvent : EventBase, IEvent { public string Message { get; set; } public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServicePerformance; } }