This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides functionality for nested containers, which logically contain zero or more other components and are owned by a parent component.</summary>
// Token: 0x0200013B RID: 315
[Token(Token = "0x200013B")]
public interface INestedContainer : IContainer, IDisposable
{
/// <summary>Gets the owning component for the nested container.</summary>
/// <returns>The <see cref="T:System.ComponentModel.IComponent" /> that owns the nested container.</returns>
// Token: 0x17000172 RID: 370
// (get) Token: 0x060007D2 RID: 2002
[Token(Token = "0x17000172")]
IComponent Owner
{
[Token(Token = "0x60007D2")]
[Address(Slot = "0")]
get;
}
}
}