Class DataTransferColumnCollection
- Namespace
- Cuemon.Data
- Assembly
- Cuemon.Data.dll
Represents a collection of DataTransferColumn objects for a table in a database. This class cannot be inherited.
public sealed class DataTransferColumnCollection : List<DataTransferColumn>, IList<DataTransferColumn>, ICollection<DataTransferColumn>, IReadOnlyList<DataTransferColumn>, IReadOnlyCollection<DataTransferColumn>, IEnumerable<DataTransferColumn>, IList, ICollection, IEnumerable
- Inheritance
-
DataTransferColumnCollection
- Implements
- Inherited Members
-
List<DataTransferColumn>.IList.get_Item(Int32)List<DataTransferColumn>.IList.set_Item(Int32, Object)
Properties
Item[String]
Gets the DataTransferColumn from the collection with the specified name.
public DataTransferColumn this[string name] { get; }
Parameters
name
StringThe name of the column from which to return.
Property Value
- DataTransferColumn
A DataTransferColumn if found; otherwise null.