2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2016-11-11 12:55:12 -07:00
|
|
|
|
2017-02-12 18:07:48 -07:00
|
|
|
namespace Emby.Server.Implementations.Services
|
2016-11-11 12:55:12 -07:00
|
|
|
{
|
2017-02-12 18:07:48 -07:00
|
|
|
public class ServiceMethod
|
2016-11-11 12:55:12 -07:00
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
public ActionInvokerFn ServiceAction { get; set; }
|
|
|
|
public MediaBrowser.Model.Services.IHasRequestFilter[] RequestFilters { get; set; }
|
|
|
|
|
|
|
|
public static string Key(Type serviceType, string method, string requestDtoName)
|
|
|
|
{
|
2019-01-27 04:03:43 -07:00
|
|
|
return serviceType.FullName + " " + method.ToUpperInvariant() + " " + requestDtoName;
|
2016-11-11 12:55:12 -07:00
|
|
|
}
|
|
|
|
}
|
2019-01-13 12:30:03 -07:00
|
|
|
}
|