using System; using LeanCloud.Common; using LeanCloud.Storage; using LeanCloud.Storage.Internal.Http; namespace LeanCloud { /// /// LeanCloud 全局接口 /// public class LCApplication { // SDK 版本号,用于 User-Agent 统计 internal const string SDKVersion = "0.2.2"; // 接口版本号,用于接口版本管理 internal const string APIVersion = "1.1"; public static string AppId { get; private set; } public static string AppKey { get; private set; } public static bool UseProduction { get; set; } public static LCAppRouter AppRouter { get; private set; } internal static LCHttpClient HttpClient { get; private set; } public static void Initialize(string appId, string appKey, string server = null) { if (string.IsNullOrEmpty(appId)) { throw new ArgumentException(nameof(appId)); } if (string.IsNullOrEmpty(appKey)) { throw new ArgumentException(nameof(appKey)); } AppId = appId; AppKey = appKey; // 注册 LeanCloud 内部子类化类型 LCObject.RegisterSubclass(LCUser.CLASS_NAME, () => new LCUser()); LCObject.RegisterSubclass(LCRole.CLASS_NAME, () => new LCRole()); LCObject.RegisterSubclass(LCFile.CLASS_NAME, () => new LCFile()); AppRouter = new LCAppRouter(appId, server); HttpClient = new LCHttpClient(appId, appKey, server, SDKVersion, APIVersion); } } }