/// <param name="walker">The walk to check against.</param>
 /// <returns>
 ///
 /// <code>true</code>
 /// if the path length of this filter matches the length
 /// of the current path of the supplied TreeWalk.
 /// </returns>
 public virtual bool IsDone(TreeWalk walker)
 {
     return(pathRaw.Length == walker.GetPathLength());
 }
Beispiel #2
0
		/// <param name="walker">The walk to check against.</param>
		/// <returns>
		/// 
		/// <code>true</code>
		/// if the path length of this filter matches the length
		/// of the current path of the supplied TreeWalk.
		/// </returns>
		public virtual bool IsDone(TreeWalk walker)
		{
			return pathRaw.Length == walker.GetPathLength();
		}