31 lines
1.1 KiB
C#
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: 0x020000FF RID: 255
|
|
[Token(Token = "0x20000FF")]
|
|
public abstract class ContainerFilterService
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ContainerFilterService" /> class.</summary>
|
|
// Token: 0x06000643 RID: 1603 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000643")]
|
|
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
|
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: 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;
|
|
}
|
|
}
|
|
}
|