VkNet.Model.AccountChangePasswordResult.FromJson C# (CSharp) Méthode

FromJson() public static méthode

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

            return item;
        }
AccountChangePasswordResult