System.Data.Common.ADP.ParametersMappingIndex C# (CSharp) Method

ParametersMappingIndex() static private method

static private ParametersMappingIndex ( int index, DbParameterCollection collection ) : Exception
index int
collection DbParameterCollection
return Exception
        static internal Exception ParametersMappingIndex(int index, DbParameterCollection collection)
        {
            return CollectionIndexInt32(index, collection.GetType(), collection.Count);
        }
        static internal Exception ParametersSourceIndex(string parameterName, DbParameterCollection collection, Type parameterType)
ADP