System.Data.Common.ADP.CollectionIndexInt32(int, System.Type, int)

Here are the examples of the csharp api class System.Data.Common.ADP.CollectionIndexInt32(int, System.Type, int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

1. Example

Project: referencesource
Source File: AdapterUtil.cs
View license
static internal Exception ColumnsIndexInt32(int index, IColumnMappingCollection collection) {
            return CollectionIndexInt32(index, collection.GetType(), collection.Count);
        }

2. Example

Project: referencesource
Source File: AdapterUtil.cs
View license
static internal Exception TablesIndexInt32(int index, ITableMappingCollection collection) {
            return CollectionIndexInt32(index, collection.GetType(), collection.Count);
        }

3. Example

Project: referencesource
Source File: AdapterUtil.cs
View license
static internal Exception ParametersMappingIndex(int index, IDataParameterCollection collection) {
            return CollectionIndexInt32(index, collection.GetType(), collection.Count);
        }