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