Here are the examples of the csharp api class System.Data.Common.ADP.CollectionNullValue(string, System.Type, System.Type) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
3 Examples
0
1. Example
View licensestatic internal Exception ColumnsAddNullAttempt(string parameter) { return CollectionNullValue(parameter, typeof(DataColumnMappingCollection), typeof(DataColumnMapping)); }
0
2. Example
View licensestatic internal Exception TablesAddNullAttempt(string parameter) { return CollectionNullValue(parameter, typeof(DataTableMappingCollection), typeof(DataTableMapping)); }
0
3. Example
View licensestatic internal Exception ParameterNull(string parameter, IDataParameterCollection collection, Type parameterType) { return CollectionNullValue(parameter, collection.GetType(), parameterType); }