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

24 lines
748 B
C#

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;
}
}
}