Modifier

TreeNodeBindingCollection.Contains(TreeNodeBinding) Method

Definition

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.

Applies to

See also