Calyptus.MVC.Internal.RoutingEngine.TryParseSubRoute C# (CSharp) Method

TryParseSubRoute() public method

public TryParseSubRoute ( PathStack path, object controller, MethodInfo &method, object &args ) : bool
path PathStack
controller object
method System.Reflection.MethodInfo
args object
return bool
		public bool TryParseSubRoute(PathStack path, object controller, out MethodInfo method, out object[] args)
		{
			if (path.Current == "MVC")
			{
				
			}
			method = null;
			args = null;
			return false;
		}