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 -> bool
Public Function Contains (value As OracleParameter) As Boolean
Parameters
- 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 -> bool
override this.Contains : obj -> bool
Public Function Contains (value As Object) As Boolean
Public Overrides Function Contains (value As Object) As Boolean
Parameters
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 -> bool
override this.Contains : string -> bool
Public Function Contains (parameterName As String) As Boolean
Public Overrides Function Contains (parameterName As String) As Boolean
Parameters
- parameterName
- String
The name of the OracleParameter to look for in the collection.
Returns
true
if the OracleParameter is in the collection; otherwise, false
.