using System; using System.Collections; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides functionality to an object to return a list that can be bound to a data source. // 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 { /// Gets a value indicating whether the collection is a collection of objects. /// /// if the collection is a collection of objects; otherwise, . // Token: 0x1700016D RID: 365 // (get) Token: 0x060007BA RID: 1978 [Token(Token = "0x1700016D")] bool ContainsListCollection { [Token(Token = "0x60007BA")] [Address(Slot = "0")] get; } /// Returns an that can be bound to a data source from an object that does not implement an itself. /// An that can be bound to a data source from the object. // Token: 0x060007BB RID: 1979 [Token(Token = "0x60007BB")] [Address(Slot = "1")] IList GetList(); } }