Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

34 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>Provides data for the <see cref="E:System.IO.FileSystemWatcher.Renamed" /> event.</summary>
// Token: 0x02000203 RID: 515
[Token(Token = "0x2000203")]
public class RenamedEventArgs : FileSystemEventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.IO.RenamedEventArgs" /> class.</summary>
/// <param name="changeType">One of the <see cref="T:System.IO.WatcherChangeTypes" /> values.</param>
/// <param name="directory">The name of the affected file or directory.</param>
/// <param name="name">The name of the affected file or directory.</param>
/// <param name="oldName">The old name of the affected file or directory.</param>
// Token: 0x06000D47 RID: 3399 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000D47")]
[Address(RVA = "0xDD6E70", Offset = "0xDD5E70", VA = "0x180DD6E70")]
public RenamedEventArgs(WatcherChangeTypes changeType, string directory, string name, string oldName)
{
}
// Token: 0x04000740 RID: 1856
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000740")]
private string oldName;
// Token: 0x04000741 RID: 1857
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000741")]
private string oldFullPath;
}
}