84 lines
2.7 KiB
C#
84 lines
2.7 KiB
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Diagnostics.Tracing
|
|
{
|
|
/// <summary>Allows the event tracing for Windows (ETW) name to be defined independently of the name of the event source class.</summary>
|
|
// Token: 0x020006AF RID: 1711
|
|
[Token(Token = "0x20006AF")]
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class EventSourceAttribute : Attribute
|
|
{
|
|
/// <summary>Gets or sets the name of the event source.</summary>
|
|
/// <returns>The name of the event source.</returns>
|
|
// Token: 0x17000823 RID: 2083
|
|
// (get) Token: 0x060033CB RID: 13259 RVA: 0x00002082 File Offset: 0x00000282
|
|
// (set) Token: 0x060033CC RID: 13260 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000823")]
|
|
public string Name
|
|
{
|
|
[Token(Token = "0x60033CB")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60033CC")]
|
|
[Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800")]
|
|
[CompilerGenerated]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the event source identifier.</summary>
|
|
/// <returns>The event source identifier.</returns>
|
|
// Token: 0x17000824 RID: 2084
|
|
// (get) Token: 0x060033CD RID: 13261 RVA: 0x00002082 File Offset: 0x00000282
|
|
// (set) Token: 0x060033CE RID: 13262 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000824")]
|
|
public string Guid
|
|
{
|
|
[Token(Token = "0x60033CD")]
|
|
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60033CE")]
|
|
[Address(RVA = "0x4157F0", Offset = "0x4147F0", VA = "0x1804157F0")]
|
|
[CompilerGenerated]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the name of the localization resource file.</summary>
|
|
/// <returns>The name of the localization resource file, or <see langword="null" /> if the localization resource file does not exist.</returns>
|
|
// Token: 0x17000825 RID: 2085
|
|
// (get) Token: 0x060033CF RID: 13263 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x17000825")]
|
|
public string LocalizationResources
|
|
{
|
|
[Token(Token = "0x60033CF")]
|
|
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceAttribute" /> class.</summary>
|
|
// Token: 0x060033D0 RID: 13264 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60033D0")]
|
|
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
|
|
public EventSourceAttribute()
|
|
{
|
|
}
|
|
}
|
|
}
|