DataControlFieldCollection.Contains(DataControlField) 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.
Determines whether the DataControlFieldCollection collection contains a specific DataControlField object.
public:
bool Contains(System::Web::UI::WebControls::DataControlField ^ field);
public bool Contains (System.Web.UI.WebControls.DataControlField field);
member this.Contains : System.Web.UI.WebControls.DataControlField -> bool
Public Function Contains (field As DataControlField) As Boolean
Parameters
- field
- DataControlField
The DataControlField to locate in the DataControlFieldCollection.
Returns
true
if the DataControlFieldCollection contains the specified field; otherwise, false
.
Remarks
This method performs a linear search. It determines equality by calling Object.Equals.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.