EntityParameterCollection.IndexOf Method

Definition

Gets the location of the specified EntityParameter in the collection.

Overloads

IndexOf(String)

Gets the location of the specified EntityParameter with the specified name.

IndexOf(EntityParameter)

Gets the location of the specified EntityParameter in the collection.

IndexOf(Object)

Gets the location of the specified Object in the collection.

IndexOf(String)

Gets the location of the specified EntityParameter with the specified name.

public:
 override int IndexOf(System::String ^ parameterName);
public override int IndexOf (string parameterName);
override this.IndexOf : string -> int
Public Overrides Function IndexOf (parameterName As String) As Integer

Parameters

parameterName
String

The case-sensitive name of the EntityParameter to find.

Returns

The zero-based location of the specified EntityParameter with the specified case-sensitive name. Returns -1 when the object does not exist in the EntityParameterCollection.

Applies to

IndexOf(EntityParameter)

Gets the location of the specified EntityParameter in the collection.

public:
 int IndexOf(System::Data::EntityClient::EntityParameter ^ value);
public int IndexOf (System.Data.EntityClient.EntityParameter value);
override this.IndexOf : System.Data.EntityClient.EntityParameter -> int
Public Function IndexOf (value As EntityParameter) As Integer

Parameters

value
EntityParameter

The EntityParameter to find.

Returns

The zero-based location of the specified EntityParameter that is a EntityParameter in the collection. Returns -1 when the object does not exist in the EntityParameterCollection.

Applies to

IndexOf(Object)

Gets the location of the specified Object in the collection.

public:
 override int IndexOf(System::Object ^ value);
public override int IndexOf (object value);
override this.IndexOf : obj -> int
Public Overrides Function IndexOf (value As Object) As Integer

Parameters

value
Object

The Object to find.

Returns

The zero-based location of the specified Object that is a EntityParameter in the collection. Returns -1 when the object does not exist in the EntityParameterCollection.

Applies to