WebPartVerbCollection Class
Represents a collection of custom Web Parts verbs. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
System.Collections::ReadOnlyCollectionBase
System.Web.UI.WebControls.WebParts::WebPartVerbCollection
| Name | Description | |
|---|---|---|
![]() | WebPartVerbCollection() | Initializes a new instance of the WebPartVerbCollection class. |
![]() | WebPartVerbCollection(ICollection^) | Initializes a new instance of the WebPartVerbCollection class using the specified collection. |
![]() | WebPartVerbCollection(WebPartVerbCollection^, ICollection^) | Initializes a new instance of the WebPartVerbCollection class using the specified collections. |
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of elements contained in the ReadOnlyCollectionBase instance.(Inherited from ReadOnlyCollectionBase.) |
![]() | Item[Int32] | Gets a Web Parts verb from the collection at the specified index. |
| Name | Description | |
|---|---|---|
![]() | Contains(WebPartVerb^) | Searches the Web Parts verb collection for the specified WebPartVerb object. |
![]() | CopyTo(array<WebPartVerb^>^, Int32) | Copies elements of the collection to the specified array, starting at the specified index. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetEnumerator() | Returns an enumerator that iterates through the ReadOnlyCollectionBase instance.(Inherited from ReadOnlyCollectionBase.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | IndexOf(WebPartVerb^) | Searches for the specified Web Parts verb and returns the zero-based index of the first occurrence within the entire collection. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Empty | Specifies an empty collection that you can use instead of creating a new one. This static field is read-only. |
| Name | Description | |
|---|---|---|
![]() ![]() | ICollection::CopyTo(Array^, Int32) | Copies the entire ReadOnlyCollectionBase to a compatible one-dimensional Array, starting at the specified index of the target array.(Inherited from ReadOnlyCollectionBase.) |
![]() ![]() | ICollection::IsSynchronized | Gets a value indicating whether access to a ReadOnlyCollectionBase object is synchronized (thread safe).(Inherited from ReadOnlyCollectionBase.) |
![]() ![]() | ICollection::SyncRoot | Gets an object that can be used to synchronize access to a ReadOnlyCollectionBase object.(Inherited from ReadOnlyCollectionBase.) |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast<TResult>() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType<TResult>() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |
Web Parts verbs are interactive user interface (UI) elements that are displayed in a menu or title bar of a Web Parts control. A Web Parts zone provides to a Web Parts control a standard set of verbs that are rendered in the Web Parts verb menu. A custom Web Parts zone or a Web Parts control can add additional verbs to this menu.
ASP.NET provides several standard verbs by default to all controls in a Web Parts zone, including the close and minimize verbs. There are standard verbs for opening, closing, editing, and minimizing a control, and other verbs for exporting a definition for the control or loading a Help file.
You can create new verbs that are added to the Web Parts verb menu. A control can inherit from the WebPart base class and add WebPartVerb objects to a WebPartVerbCollection collection. This collection can then be added to the Verbs collection of the control.
A control can also implement the IWebActionable interface and override the Verbs property. You can then use a WebPartVerbCollection collection to add custom verbs to a control.
This class implements ReadOnlyCollectionBase, which provides a non-generic, read-only collection.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.






