Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

74 lines
2.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>Contains information on the change that occurred.</summary>
// Token: 0x0200020C RID: 524
[Token(Token = "0x200020C")]
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: 0x1700027B RID: 635
// (set) Token: 0x06000D68 RID: 3432 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700027B")]
public WatcherChangeTypes ChangeType
{
[Token(Token = "0x6000D68")]
[Address(RVA = "0x724F70", Offset = "0x723D70", VA = "0x180724F70")]
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: 0x1700027C RID: 636
// (set) Token: 0x06000D69 RID: 3433 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700027C")]
public string Name
{
[Token(Token = "0x6000D69")]
[Address(RVA = "0x737860", Offset = "0x736660", VA = "0x180737860")]
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: 0x1700027D RID: 637
// (set) Token: 0x06000D6A RID: 3434 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700027D")]
public string OldName
{
[Token(Token = "0x6000D6A")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
set
{
}
}
// Token: 0x0400075E RID: 1886
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400075E")]
private WatcherChangeTypes changeType;
// Token: 0x0400075F RID: 1887
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x400075F")]
private string name;
// Token: 0x04000760 RID: 1888
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000760")]
private string oldName;
// Token: 0x04000761 RID: 1889
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000761")]
private bool timedOut;
}
}