コード例 #1
0
ファイル: ResponseBase.cs プロジェクト: namarakM/vk-unity-sdk
        internal ResponseBase(VKResponseContainer container)
        {
            int callbackId = GetCallbackId(container.ResultDictionary);

            Init(container, callbackId);
        }
コード例 #2
0
ファイル: ResponseBase.cs プロジェクト: namarakM/vk-unity-sdk
 private void Init(VKResponseContainer container, int callbackId)
 {
     JsonString       = container.JsonString;
     ResultDictionary = container.ResultDictionary;
     CallbackId       = callbackId;
 }