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 1379aea commit 33779b7Copy full SHA for 33779b7
src/JKang.IpcServiceFramework/IpcServiceClient.cs
@@ -43,6 +43,7 @@ public async Task<TResult> InvokeAsync<TResult>(string method, params object[] a
43
IpcResponse response = JsonConvert.DeserializeObject<IpcResponse>(responseJson);
44
if (response.Succeed)
45
{
46
+ // TODO: handle primitive types
47
return ((JObject)response.Data).ToObject<TResult>();
48
}
49
else
0 commit comments