DataColumnMappingCollection::Item Property (String^)

 

Gets or sets the DataColumnMapping object with the specified source column name.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
[BrowsableAttribute(false)]
property DataColumnMapping^ default[
	String^ sourceColumn
] {
	DataColumnMapping^ get(String^ sourceColumn);
	void set(String^ sourceColumn, DataColumnMapping^ value);
}

Parameters

sourceColumn
Type: System::String^

The case-sensitive name of the source column.

Property Value

Type: System.Data.Common::DataColumnMapping^

The DataColumnMapping object with the specified source column name.

The following example searches for a DataColumnMapping object with the given source column name within a DataColumnMappingCollection collection. If the DataColumnMapping exists, the example displays the name and the index of the mapping. If the mapping does not exist, the example displays an error. This example assumes that a DataColumnMappingCollection collection has been created.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: