38 lines
1.7 KiB
C#
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: 0x02000136 RID: 310
|
|
[Token(Token = "0x2000136")]
|
|
[TypeConverter]
|
|
[Editor]
|
|
[TypeConverter("System.Windows.Forms.Design.DataSourceConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
|
|
[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)]
|
|
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: 0x1700016D RID: 365
|
|
// (get) Token: 0x060007BA RID: 1978
|
|
[Token(Token = "0x1700016D")]
|
|
bool ContainsListCollection
|
|
{
|
|
[Token(Token = "0x60007BA")]
|
|
[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: 0x060007BB RID: 1979
|
|
[Token(Token = "0x60007BB")]
|
|
[Address(Slot = "1")]
|
|
IList GetList();
|
|
}
|
|
}
|