mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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.ToUpper() + " " + requestDtoName;
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |