csharp-sdk-upm/Engine/Handlers/LCPingHandler.cs

14 lines
366 B
C#
Raw Normal View History

2021-03-18 13:52:23 +08:00
using System.Collections.Generic;
namespace LeanCloud.Engine {
public class LCPingHandler {
public static object HandlePing() {
LCLogger.Debug("Ping ~~~");
return new Dictionary<string, string> {
{ "runtime", "dotnet" },
{ "version", LCApplication.SDKVersion }
};
}
}
}