| File: System\Data\ITableMappingCollection.cs | Web Access |
| Project: src\runtime\src\libraries\System.Data.Common\src\System.Data.Common.csproj (System.Data.Common) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections; namespace System.Data { public interface ITableMappingCollection : IList { object this[string index] { get; set; } ITableMapping Add(string sourceTableName, string dataSetTableName); bool Contains(string? sourceTableName); ITableMapping GetByDataSetTable(string dataSetTableName); int IndexOf(string? sourceTableName); void RemoveAt(string sourceTableName); } }