Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Extend IResolver with new Resolver Methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Weber committed Aug 26, 2016
1 parent e042a6b commit c72596c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Pather.CSharp/IResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ public interface IResolver
{
IList<IPathElementFactory> PathElementFactories { get; set; }

IList<IPathElement> CreatePath(string path);
object Resolve(object target, IList<IPathElement> pathElements);
object Resolve(object target, string path);
}
}

0 comments on commit c72596c

Please sign in to comment.