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

31 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a base class for the container filter service.</summary>
// Token: 0x02000103 RID: 259
[Token(Token = "0x2000103")]
public abstract class ContainerFilterService
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ContainerFilterService" /> class.</summary>
// Token: 0x06000659 RID: 1625 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000659")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected ContainerFilterService()
{
}
/// <summary>Filters the component collection.</summary>
/// <param name="components">The component collection to filter.</param>
/// <returns>A <see cref="T:System.ComponentModel.ComponentCollection" /> that represents a modified collection.</returns>
// Token: 0x0600065A RID: 1626 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600065A")]
[Address(RVA = "0x4996E0", Offset = "0x4984E0", VA = "0x1804996E0", Slot = "4")]
public virtual ComponentCollection FilterComponents(ComponentCollection components)
{
return null;
}
}
}