Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000137 RID: 311
[Token(Token = "0x2000137")]
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: 0x1700016E RID: 366
// (get) Token: 0x060007BC RID: 1980
[Token(Token = "0x1700016E")]
IComponent Owner
{
[Token(Token = "0x60007BC")]
[Address(Slot = "0")]
get;
}
}
}