diff options
| author | crobibero <cody@robibe.ro> | 2020-09-03 10:37:05 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-09-03 10:37:05 -0600 |
| commit | 1be84e8873ed05b548663f9625c95bc9bed302e6 (patch) | |
| tree | d7fc5c4005727a9b2955925d127eb65833ce01d1 /Emby.Server.Implementations/Services/ServiceMethod.cs | |
| parent | 9c6d0117b50fb593cb11767ee391758504cf1348 (diff) | |
| parent | 645db0524fb1368135ecea9e5b776ad9b490b17b (diff) | |
Merge remote-tracking branch 'upstream/master' into api-stream-return
Diffstat (limited to 'Emby.Server.Implementations/Services/ServiceMethod.cs')
| -rw-r--r-- | Emby.Server.Implementations/Services/ServiceMethod.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Emby.Server.Implementations/Services/ServiceMethod.cs b/Emby.Server.Implementations/Services/ServiceMethod.cs deleted file mode 100644 index 5116cc04f..000000000 --- a/Emby.Server.Implementations/Services/ServiceMethod.cs +++ /dev/null @@ -1,20 +0,0 @@ -#pragma warning disable CS1591 - -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; - } - } -} |
