Castle.MonoRail.UrlInfo.UrlInfo C# (CSharp) Method

UrlInfo() public method

public UrlInfo ( string area, string controller, string action )
area string
controller string
action string
		public UrlInfo(string area, string controller, string action)
		{
			this.area = area;
			this.controller = controller;
			this.action = action;
		}
UrlInfo