14 lines
366 B
C#
14 lines
366 B
C#
|
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 }
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|