DbParameterCollection.IndexOf 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定的 DbParameter 对象的索引。
重载
IndexOf(Object) |
返回指定的 DbParameter 对象的索引。 |
IndexOf(String) |
返回具有指定名称的 DbParameter 对象的索引。 |
IndexOf(Object)
- Source:
- DbParameterCollection.cs
- Source:
- DbParameterCollection.cs
- Source:
- DbParameterCollection.cs
返回指定的 DbParameter 对象的索引。
public:
abstract int IndexOf(System::Object ^ value);
public abstract int IndexOf (object value);
abstract member IndexOf : obj -> int
Public MustOverride Function IndexOf (value As Object) As Integer
参数
- value
- Object
集合中的 DbParameter 对象。
返回
指定的 DbParameter 对象的索引。
实现
另请参阅
适用于
IndexOf(String)
- Source:
- DbParameterCollection.cs
- Source:
- DbParameterCollection.cs
- Source:
- DbParameterCollection.cs
返回具有指定名称的 DbParameter 对象的索引。
public:
abstract int IndexOf(System::String ^ parameterName);
public abstract int IndexOf (string parameterName);
abstract member IndexOf : string -> int
Public MustOverride Function IndexOf (parameterName As String) As Integer
参数
- parameterName
- String
集合中 DbParameter 对象的名称。
返回
具有指定名称的 DbParameter 对象的索引。