当前位置: 首页>>代码示例>>C#>>正文


C# JSONObject.Bake方法代码示例

本文整理汇总了C#中JSONObject.Bake方法的典型用法代码示例。如果您正苦于以下问题:C# JSONObject.Bake方法的具体用法?C# JSONObject.Bake怎么用?C# JSONObject.Bake使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在JSONObject的用法示例。


在下文中一共展示了JSONObject.Bake方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: StringResources

 private StringResources()
 {
     TextAsset strings = Resources.Load(Key) as TextAsset;
     if (strings != null)
     {
         _stringsJsonObject = new JSONObject(strings.text);
         _stringsJsonObject.Bake();
     }
     else
     {
         _stringsJsonObject = new JSONObject();
     }
 }
开发者ID:Xakkar,项目名称:zerotram,代码行数:13,代码来源:StringResources.cs

示例2: GetConfig

 public static JSONObject GetConfig()
 {
     if (_config == null)
     {
         if (IsLocalConfigAvailable())
         {
             _config = new JSONObject(PlayerPrefs.GetString(ConfigKey));
         }
         else
         {
             TextAsset config = Resources.Load("config") as TextAsset;
             if (config != null)
             {
                 _config = new JSONObject(config.text);
                 _config.Bake();
             }
             else
             {
                 _config = new JSONObject();
             }
         }
     }
     return _config;
 }
开发者ID:Xakkar,项目名称:zerotram,代码行数:24,代码来源:ConfigReader.cs

示例3: AuthorizeUser

 public void AuthorizeUser(Action<JSONObject> onComplete)
 {
     if(_token == null) {
         _token = GetToken ();
     }
     if(_token == "") {
         String response = "{\"error\": \"no token found\"}";
         JSONObject jsonResponse = new JSONObject (response);
         jsonResponse.Bake ();
         onComplete (jsonResponse);
         return;
     }
     if (_userId == null) {
         _userId = GetUserid ();
     }
     if(_userId == "") {
         String response = "{\"error\": \"no userid found\"}";
         JSONObject jsonResponse = new JSONObject (response);
         jsonResponse.Bake ();
         onComplete (jsonResponse);
         return;
     }
     POST ("user/authorize", new Dictionary<string, string> { { "token", _token }, { "uuid", _userId } }, onComplete);
 }
开发者ID:Syjgin,项目名称:zerotram,代码行数:24,代码来源:Client.cs

示例4: WaitForRequest

 private IEnumerator WaitForRequest(WWW www, System.Action<JSONObject> onComplete)
 {
     yield return www;
     // check for errors
     if (www.error == null)
     {
         JSONObject result = new JSONObject(www.text);
         result.Bake();
         onComplete(result);
     }
     else {
         Debug.Log(www.error);
         JSONObject result = new JSONObject();
         result.AddField("error", www.error);
         result.Bake();
         onComplete(result);
     }
     www.Dispose ();
 }
开发者ID:Syjgin,项目名称:zerotram,代码行数:19,代码来源:Client.cs


注:本文中的JSONObject.Bake方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。