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

FromJson() public static méthode

Разобрать из json.
public static FromJson ( VkResponse response ) : History
response VkResponse Ответ сервера.
Résultat History
        public static History FromJson(VkResponse response)
        {
            var reposts = new History
            {
                Id = response["id"],
                Length = response["length"],
                Date = response["date"],
                EditorId = response["editor_id"],
                EditorName = response["editor_name"]
            };

            return reposts;
        }
History