ALE.Http.Routing.Add C# (CSharp) 메소드

Add() 공개 정적인 메소드

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