RemoveAll() public method

public RemoveAll ( Predicate match ) : void
match Predicate
return void
コード例 #1
0
 /// <summary>
 /// Removes all the XPathNodeMarkers from the marker strategy.
 /// </summary>
 public static void RemoveMarkers(MarkerStrategy markerStrategy)
 {
     markerStrategy.RemoveAll(IsXPathNodeTextMarkerMatch);
 }
コード例 #2
0
		/// <summary>
		/// Removes all CodeCoverageMarkers from the marker strategy.
		/// </summary>
		public void RemoveMarkers(MarkerStrategy markerStrategy)
		{
			markerStrategy.RemoveAll(IsCodeCoverageTextMarkerMatch);
		}