Aurora.Services.WebAPIHandler.APIMethods C# (CSharp) Метод

APIMethods() публичный Метод

public APIMethods ( ) : List>.Dictionary
Результат List>.Dictionary
        public Dictionary<WebAPIHttpMethod, List<string>> APIMethods()
        {
            Dictionary<WebAPIHttpMethod, List<string>> methods = new Dictionary<WebAPIHttpMethod, List<string>>(m_APIMethods.Count);
            foreach (KeyValuePair<WebAPIHttpMethod, Dictionary<string, MethodInfo>> kvp in m_APIMethods)
            {
                methods[kvp.Key] = new List<string>(kvp.Value.Keys);
            }
            return methods;
        }