ALE.Http.Routing.Add C# (CSharp) Method

Add() public static method

public static Add ( string path, Type controllerType, string methodName ) : void
path string
controllerType System.Type
methodName string
return void
        public static void Add(string path, Type controllerType, string methodName)
        {
            Routes.Add(new Route(path, methodName, controllerType));
        }