e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
30 lines
929 B
C#
30 lines
929 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="IColumnMappingCollection.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">markash</owner>
|
|
// <owner current="true" primary="false">laled</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Data {
|
|
using System;
|
|
|
|
public interface IColumnMappingCollection : System.Collections.IList {
|
|
|
|
object this[string index] {
|
|
get;
|
|
set;
|
|
}
|
|
|
|
IColumnMapping Add(string sourceColumnName, string dataSetColumnName);
|
|
|
|
bool Contains(string sourceColumnName);
|
|
|
|
IColumnMapping GetByDataSetColumn(string dataSetColumnName);
|
|
|
|
int IndexOf(string sourceColumnName);
|
|
|
|
void RemoveAt(string sourceColumnName);
|
|
}
|
|
}
|