TreeListOperation Methods
Serves as the base for classes specifying operations performed on nodes.| Name | Description |
|---|---|
| CanContinueIteration(TreeListNode) | Returns a value indicating whether the iteration must be stopped. |
| CanExecute(TreeListNode) | Checks whether or not this TreeListOperation can be applied to the specific node. |
| Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
| Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
| Execute(TreeListNode) | Must be implemented to perform an operation on the visited node. |
| FinalizeOperation() | Can be overridden to perform final operations and free allocated resources. |
| GetHashCode() | Serves as the default hash function. Inherited from Object. |
| GetType() | Gets the Type of the current instance. Inherited from Object. |
| MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
| NeedsVisitChildren(TreeListNode) | Gets a value specifying whether the operation must be performed on the specified node’s children. |
| ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
| ToString() | Returns a string that represents the current object. Inherited from Object. |
See Also