using System.Collections.Generic; namespace LeanCloud.Engine { public class LCPingHandler { public static object HandlePing() { LCLogger.Debug("Ping ~~~"); return new Dictionary { { "runtime", "dotnet" }, { "version", LCApplication.SDKVersion } }; } } }