10 references to DataSourceDescriptor
System.Windows.Forms.Design (10)
System\ComponentModel\Design\DataSourceDescriptorCollection.cs (8)
14public int Add(DataSourceDescriptor value) => List.Add(value); 16public int IndexOf(DataSourceDescriptor value) => List.IndexOf(value); 18public void Insert(int index, DataSourceDescriptor value) => List.Insert(index, value); 20public bool Contains(DataSourceDescriptor value) => List.Contains(value); 22public void CopyTo(DataSourceDescriptor[] array, int index) => List.CopyTo(array, index); 24public void Remove(DataSourceDescriptor value) => List.Remove(value); 26public DataSourceDescriptor? this[int index] 28get => List[index] as DataSourceDescriptor;
System\ComponentModel\Design\DataSourceProviderService.cs (2)
20public abstract bool InvokeConfigureDataSource(IWin32Window parentWindow, FormStartPosition startPosition, DataSourceDescriptor dataSourceDescriptor); 22public abstract object AddDataSourceInstance(IDesignerHost host, DataSourceDescriptor dataSourceDescriptor);