Files
Apr2020-Cpp2Il-Dump/System/ComponentModel/IListSource.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

38 lines
1.7 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides functionality to an object to return a list that can be bound to a data source.</summary>
// Token: 0x0200013A RID: 314
[Token(Token = "0x200013A")]
[Editor]
[TypeConverter]
[Editor("System.Windows.Forms.Design.DataSourceListEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[MergableProperty(false)]
[TypeConverter("System.Windows.Forms.Design.DataSourceConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public interface IListSource
{
/// <summary>Gets a value indicating whether the collection is a collection of <see cref="T:System.Collections.IList" /> objects.</summary>
/// <returns>
/// <see langword="true" /> if the collection is a collection of <see cref="T:System.Collections.IList" /> objects; otherwise, <see langword="false" />.</returns>
// Token: 0x17000171 RID: 369
// (get) Token: 0x060007D0 RID: 2000
[Token(Token = "0x17000171")]
bool ContainsListCollection
{
[Token(Token = "0x60007D0")]
[Address(Slot = "0")]
get;
}
/// <summary>Returns an <see cref="T:System.Collections.IList" /> that can be bound to a data source from an object that does not implement an <see cref="T:System.Collections.IList" /> itself.</summary>
/// <returns>An <see cref="T:System.Collections.IList" /> that can be bound to a data source from the object.</returns>
// Token: 0x060007D1 RID: 2001
[Token(Token = "0x60007D1")]
[Address(Slot = "1")]
IList GetList();
}
}