Base:
property
Count
System.Data.Common.DbParameterCollection.Count
8 references to Count
System.Data.OleDb (8)
DbBindings.cs (1)
319
if (!ForceRebind && ((collection.ChangeID == _collectionChangeID) && (_parameters.Length == collection.
Count
)))
OleDbCommand.cs (3)
302
return (null != value) && (0 < value.
Count
);
397
OleDbParameter[] parameters = new OleDbParameter[collection.
Count
];
1116
int parameterCount = (null != _parameters) ? _parameters.
Count
: 0;
OleDbParameterCollectionHelper.cs (4)
77
return
Count
- 1;
221
if ((index < 0) || (
Count
<= index))
259
Debug.Assert((null != items) && (0 <= index) && (index <
Count
), "RemoveIndex, invalid");
268
Debug.Assert((null != items) && (0 <= index) && (index <
Count
), "Replace Index invalid");