VkNet.Model.Button.FromJson C# (CSharp) Метод

FromJson() публичный статический Метод

Разобрать из json.
public static FromJson ( VkResponse response ) : Button
response VkNet.Utils.VkResponse Ответ сервера.
Результат Button
        public static Button FromJson(VkResponse response)
        {
            var button = new Button
            {
                Title = response["title"],
                Uri = response["url"]
            };

            return button;
        }
Button