using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a base class for the container filter service.
// Token: 0x02000103 RID: 259
[Token(Token = "0x2000103")]
public abstract class ContainerFilterService
{
/// Initializes a new instance of the class.
// Token: 0x06000659 RID: 1625 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000659")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected ContainerFilterService()
{
}
/// Filters the component collection.
/// The component collection to filter.
/// A that represents a modified collection.
// 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;
}
}
}