This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+73
View File
@@ -0,0 +1,73 @@
using System;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>Contains information on the change that occurred.</summary>
// Token: 0x02000208 RID: 520
[Token(Token = "0x2000208")]
public struct WaitForChangedResult
{
/// <summary>Gets or sets the type of change that occurred.</summary>
/// <returns>One of the <see cref="T:System.IO.WatcherChangeTypes" /> values.</returns>
// Token: 0x17000277 RID: 631
// (set) Token: 0x06000D52 RID: 3410 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000277")]
public WatcherChangeTypes ChangeType
{
[Token(Token = "0x6000D52")]
[Address(RVA = "0x593040", Offset = "0x592040", VA = "0x180593040")]
set
{
}
}
/// <summary>Gets or sets the name of the file or directory that changed.</summary>
/// <returns>The name of the file or directory that changed.</returns>
// Token: 0x17000278 RID: 632
// (set) Token: 0x06000D53 RID: 3411 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000278")]
public string Name
{
[Token(Token = "0x6000D53")]
[Address(RVA = "0x6347B0", Offset = "0x6337B0", VA = "0x1806347B0")]
set
{
}
}
/// <summary>Gets or sets the original name of the file or directory that was renamed.</summary>
/// <returns>The original name of the file or directory that was renamed.</returns>
// Token: 0x17000279 RID: 633
// (set) Token: 0x06000D54 RID: 3412 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000279")]
public string OldName
{
[Token(Token = "0x6000D54")]
[Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800")]
set
{
}
}
// Token: 0x04000751 RID: 1873
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000751")]
private WatcherChangeTypes changeType;
// Token: 0x04000752 RID: 1874
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000752")]
private string name;
// Token: 0x04000753 RID: 1875
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000753")]
private string oldName;
// Token: 0x04000754 RID: 1876
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000754")]
private bool timedOut;
}
}