We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c9b2c commit af67c0dCopy full SHA for af67c0d
src/JsonRpc/IHandlerDescriptor.cs
@@ -5,9 +5,23 @@ namespace OmniSharp.Extensions.JsonRpc
5
public interface IHandlerDescriptor
6
{
7
string Method { get; }
8
- IJsonRpcHandler Handler { get; }
9
Type HandlerType { get; }
10
Type Params { get; }
11
Type Response { get; }
12
}
+
13
+ public interface IHandlerDelegateDescriptor
14
+ {
15
+ Delegate HandlerDelegate { get; }
16
+ }
17
18
+ public interface IHandlerTypeDescriptor
19
20
+ Type HandlerImplemenationType { get; }
21
22
23
+ public interface IHandlerInstanceDescriptor
24
25
+ IJsonRpcHandler Handler { get; }
26
27
0 commit comments