You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.Services
|
|
|
|
{
|
|
|
|
public class ServiceMethod
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
return serviceType.FullName + " " + method.ToUpperInvariant() + " " + requestDtoName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|