TreeNodeBindingCollection.Contains(TreeNodeBinding) 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 specified TreeNodeBinding object is in the collection.
public:
bool Contains(System::Web::UI::WebControls::TreeNodeBinding ^ binding);
public bool Contains (System.Web.UI.WebControls.TreeNodeBinding binding);
member this.Contains : System.Web.UI.WebControls.TreeNodeBinding -> bool
Public Function Contains (binding As TreeNodeBinding) As Boolean
Parameters
- binding
- TreeNodeBinding
The TreeNodeBinding to find.
Returns
true
if the TreeNodeBinding is in the collection; otherwise, false
.
Remarks
Use the Contains method to determine whether a TreeNodeBinding object is contained in the TreeNodeBindingCollection object. This method is commonly used to test for the existence of a TreeNodeBinding object before performing a task, such as adding or removing a TreeNodeBinding from the collection.