60 lines
2.0 KiB
C#
60 lines
2.0 KiB
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Diagnostics.Tracing
|
|
{
|
|
/// <summary>The <see cref="T:System.Diagnostics.Tracing.EventFieldAttribute" /> is placed on fields of user-defined types that are passed as <see cref="T:System.Diagnostics.Tracing.EventSource" /> payloads.</summary>
|
|
// Token: 0x02000652 RID: 1618
|
|
[Token(Token = "0x2000652")]
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class EventFieldAttribute : Attribute
|
|
{
|
|
/// <summary>Gets or sets the user-defined <see cref="T:System.Diagnostics.Tracing.EventFieldTags" /> value that is required for fields that contain data that isn't one of the supported types.</summary>
|
|
/// <returns>Returns <see cref="T:System.Diagnostics.Tracing.EventFieldTags" />.</returns>
|
|
// Token: 0x170007E8 RID: 2024
|
|
// (get) Token: 0x060031CE RID: 12750 RVA: 0x0001B228 File Offset: 0x00019428
|
|
[Token(Token = "0x170007E8")]
|
|
public EventFieldTags Tags
|
|
{
|
|
[Token(Token = "0x60031CE")]
|
|
[Address(RVA = "0x40F000", Offset = "0x40E000", VA = "0x18040F000")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return EventFieldTags.None;
|
|
}
|
|
}
|
|
|
|
// Token: 0x170007E9 RID: 2025
|
|
// (get) Token: 0x060031CF RID: 12751 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170007E9")]
|
|
internal string Name
|
|
{
|
|
[Token(Token = "0x60031CF")]
|
|
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the value that specifies how to format the value of a user-defined type.</summary>
|
|
/// <returns>The value that specifies how to format the value of a user-defined type.</returns>
|
|
// Token: 0x170007EA RID: 2026
|
|
// (get) Token: 0x060031D0 RID: 12752 RVA: 0x0001B240 File Offset: 0x00019440
|
|
[Token(Token = "0x170007EA")]
|
|
public EventFieldFormat Format
|
|
{
|
|
[Token(Token = "0x60031D0")]
|
|
[Address(RVA = "0x470B70", Offset = "0x46FB70", VA = "0x180470B70")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return EventFieldFormat.Default;
|
|
}
|
|
}
|
|
}
|
|
}
|