a
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
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: 0x0200068E RID: 1678
|
||||
[Token(Token = "0x200068E")]
|
||||
[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: 0x170007AB RID: 1963
|
||||
// (get) Token: 0x060031B0 RID: 12720 RVA: 0x00002082 File Offset: 0x00000282
|
||||
// (set) Token: 0x060031B1 RID: 12721 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170007AB")]
|
||||
public string Name
|
||||
{
|
||||
[Token(Token = "0x60031B0")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60031B1")]
|
||||
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the event source identifier.</summary>
|
||||
/// <returns>The event source identifier.</returns>
|
||||
// Token: 0x170007AC RID: 1964
|
||||
// (get) Token: 0x060031B2 RID: 12722 RVA: 0x00002082 File Offset: 0x00000282
|
||||
// (set) Token: 0x060031B3 RID: 12723 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170007AC")]
|
||||
public string Guid
|
||||
{
|
||||
[Token(Token = "0x60031B2")]
|
||||
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60031B3")]
|
||||
[Address(RVA = "0x3F7210", Offset = "0x3F6010", VA = "0x1803F7210")]
|
||||
[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: 0x170007AD RID: 1965
|
||||
// (get) Token: 0x060031B4 RID: 12724 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x170007AD")]
|
||||
public string LocalizationResources
|
||||
{
|
||||
[Token(Token = "0x60031B4")]
|
||||
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceAttribute" /> class.</summary>
|
||||
// Token: 0x060031B5 RID: 12725 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60031B5")]
|
||||
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
|
||||
public EventSourceAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user