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