using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a base class for the container filter service.
// Token: 0x020000FF RID: 255
[Token(Token = "0x20000FF")]
public abstract class ContainerFilterService
{
/// Initializes a new instance of the class.
// Token: 0x06000643 RID: 1603 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000643")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
protected ContainerFilterService()
{
}
/// Filters the component collection.
/// The component collection to filter.
/// A that represents a modified collection.
// Token: 0x06000644 RID: 1604 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000644")]
[Address(RVA = "0x4AA5C0", Offset = "0x4A95C0", VA = "0x1804AA5C0", Slot = "4")]
public virtual ComponentCollection FilterComponents(ComponentCollection components)
{
return null;
}
}
}