/// <summary> /// Removes the specified element form the collection. /// </summary> /// <param name="step">The element to remove.</param> public void Remove(PipelineHandlerConfigurationElement step) { if (BaseIndexOf(step) >= 0) { BaseRemove(step.HandlerType); } }
/// <summary> /// Adds the specified PipelineStepConfigurationElement to the collection. /// </summary> /// <param name="step">The PipelineStepConfigurationElement to add to the collection.</param> public void Add(PipelineHandlerConfigurationElement step) { BaseAdd(step); }
/// <summary> /// retruns the index of the specified item in the collection. /// </summary> /// <param name="step">The element to search for in the collection.</param> /// <returns>The index of the element, -1 if the element is not found.</returns> public int IndexOf(PipelineHandlerConfigurationElement step) { return(BaseIndexOf(step)); }