コード例 #1
0
ファイル: RouteTree.cs プロジェクト: sebmarkbage/calyptus.mvc
		public MethodNode(MethodInfo method, ControllerNode[] children, string path, string verb)
		{
			this.Method = method;
			this.ChildControllers = children;
			this.Path = path;
			this.Verb = verb;
		}
コード例 #2
0
ファイル: RouteTree.cs プロジェクト: sebmarkbage/calyptus.mvc
		public RouteTree(ControllerNode[] controllers)
		{
			EntryControllers = controllers;
		}