Orchard/src/Orchard.Web/Core/Routable/IRoutablePathConstraint.cs
2010-06-08 12:01:00 -07:00

12 lines
366 B
C#

using System.Collections.Generic;
using System.Web.Routing;
namespace Orchard.Core.Routable {
public interface IRoutablePathConstraint : IRouteConstraint, ISingletonDependency {
void SetPaths(IEnumerable<string> paths);
string FindPath(string path);
void AddPath(string path);
void RemovePath(string path);
}
}