VkNet.Model.AccountChangePasswordResult.FromJson C# (CSharp) Method

FromJson() public static method

Разобрать из json.
public static FromJson ( VkResponse response ) : AccountChangePasswordResult
response VkNet.Utils.VkResponse Ответ сервера.
return AccountChangePasswordResult
        public static AccountChangePasswordResult FromJson(VkResponse response)
        {
            var item = new AccountChangePasswordResult
            {
                Token = response["token"],
                Secret = response["secret"]
            };

            return item;
        }
AccountChangePasswordResult