CodeRinseRepeat.Deluge.DelugeClient.ListMethods C# (CSharp) Метод

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

public ListMethods ( ) : IEnumerable
Результат IEnumerable
        public IEnumerable<string> ListMethods()
        {
            var result = DoServiceCall ("system.listMethods");
            return ((IList<object>) result["result"]).Cast<string> ();
        }