OracleParameterCollection.Contains Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether an OracleParameter with the specified Value is contained in the collection.
Overloads
| Contains(OracleParameter) | Determines whether the specified OracleParameter is in the OracleParameterCollection. | 
| Contains(Object) | Determines whether the specified object is in the OracleParameterCollection. | 
| Contains(String) | Indicates whether an OracleParameter with the specified name is contained in the collection. | 
Contains(OracleParameter)
Determines whether the specified OracleParameter is in the OracleParameterCollection.
public:
 bool Contains(System::Data::OracleClient::OracleParameter ^ value);public bool Contains(System.Data.OracleClient.OracleParameter value);override this.Contains : System.Data.OracleClient.OracleParameter -> boolPublic Function Contains (value As OracleParameter) As BooleanParameters
- value
- OracleParameter
The OracleParameter value.
Returns
true if the OracleParameterCollection contains the value, false otherwise.
Applies to
Contains(Object)
Determines whether the specified object is in the OracleParameterCollection.
public:
 virtual bool Contains(System::Object ^ value);public:
 override bool Contains(System::Object ^ value);public bool Contains(object value);public override bool Contains(object value);abstract member Contains : obj -> bool
override this.Contains : obj -> booloverride this.Contains : obj -> boolPublic Function Contains (value As Object) As BooleanPublic Overrides Function Contains (value As Object) As BooleanParameters
Returns
true if the OracleParameterCollection contains the value, false otherwise.
Implements
Applies to
Contains(String)
Indicates whether an OracleParameter with the specified name is contained in the collection.
public:
 virtual bool Contains(System::String ^ parameterName);public:
 override bool Contains(System::String ^ parameterName);public bool Contains(string parameterName);public override bool Contains(string parameterName);abstract member Contains : string -> bool
override this.Contains : string -> booloverride this.Contains : string -> boolPublic Function Contains (parameterName As String) As BooleanPublic Overrides Function Contains (parameterName As String) As BooleanParameters
- parameterName
- String
The name of the OracleParameter to look for in the collection.
Returns
true if the OracleParameter is in the collection; otherwise, false.