System.Data.Common.ADP.InvalidParameterType C# (CSharp) Méthode

InvalidParameterType() static private méthode

static private InvalidParameterType ( DbParameterCollection collection, Type parameterType, object invalidValue ) : Exception
collection DbParameterCollection
parameterType System.Type
invalidValue object
Résultat System.Exception
        static internal Exception InvalidParameterType(DbParameterCollection collection, Type parameterType, object invalidValue)
        {
            return CollectionInvalidType(collection.GetType(), parameterType, invalidValue);
        }
ADP