コード例 #1
0
 /// <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);
     }
 }
コード例 #2
0
 /// <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);
 }
コード例 #3
0
 /// <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));
 }