Хранит информацию о текущем аккаунте. Подробнее:
예제 #1
0
파일: AccountInfo.cs 프로젝트: justloot/vk
        internal static AccountInfo FromJson(VkResponse response)
        {
            AccountInfo info = new AccountInfo();

            info.Country = response["country"];
            info.HttpsRequired = response["https_required"];
            info.Intro = response["intro"];
            info.Language = response["lang"];

            return info;
        }