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: 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 { /// Gets a value indicating whether the collection is a collection of objects. /// /// if the collection is a collection of objects; otherwise, . // Token: 0x17000171 RID: 369 // (get) Token: 0x060007D0 RID: 2000 [Token(Token = "0x17000171")] bool ContainsListCollection { [Token(Token = "0x60007D0")] [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: 0x060007D1 RID: 2001 [Token(Token = "0x60007D1")] [Address(Slot = "1")] IList GetList(); } }