Ejemplo n.º 1
0
        public static VKAttachment Deserialize(object attachment)
        {
            var    data = (Dictionary <string, object>)attachment;
            var    _atachment = new VKAttachment();
            object type, audio, photo, poll, doc, link, wall, note, Page;

            if (data.TryGetValue("type", out type))
            {
                _atachment.type = (string)type;
            }
            if (data.TryGetValue("audio", out audio))
            {
                _atachment.audio = VKAudio.Deserialize(audio);
            }
            if (data.TryGetValue("photo", out photo))
            {
                _atachment.photo = VKPhoto.Deserialize(photo);
            }
            if (data.TryGetValue("poll", out poll))
            {
                _atachment.poll = VKPoll.Deserialize(poll);
            }
            if (data.TryGetValue("doc", out doc))
            {
                _atachment.doc = VKDocument.Deserialize(doc);
            }
            if (data.TryGetValue("link", out link))
            {
                _atachment.link = VKLink.Deserialize(link);
            }
            if (data.TryGetValue("wall", out wall))
            {
                _atachment.wall = VKWallPost.Deserialize(wall);
            }
            if (data.TryGetValue("note", out note))
            {
                _atachment.note = VKNote.Deserialize(note);
            }
            if (data.TryGetValue("Page", out Page))
            {
                _atachment.Page = VKPage.Deserialize(Page);
            }
            return(_atachment);
        }
Ejemplo n.º 2
0
        public static VKPage Deserialize(object page)
        {
            var data = (Dictionary<string,object>)page;
            var _page = new VKPage ();
            object id, group_id, creator_id, title, current_user_can_edit, current_user_can_edit_access;
            object who_can_view, who_can_edit, edited, created;

            if(data.TryGetValue("id",out id ))
                _page.id=(long)id;
            if(data.TryGetValue("group_id",out group_id ))
                _page.group_id=(long)group_id;
            if(data.TryGetValue("creator_id",out creator_id ))
                _page.creator_id=(long)creator_id;
            if(data.TryGetValue("title",out title ))
                _page.title=(string)title;
            if(data.TryGetValue("current_user_can_edit",out current_user_can_edit ))
                _page.current_user_can_edit=(int)(long)current_user_can_edit;
            if(data.TryGetValue("current_user_can_edit_access",out current_user_can_edit_access ))
                _page.current_user_can_edit_access=(int)(long)current_user_can_edit_access;
            if(data.TryGetValue("who_can_view",out who_can_view ))
                _page.who_can_view=(int)(long)who_can_view;
            if(data.TryGetValue("who_can_edit",out who_can_edit ))
                _page.who_can_edit=(int)(long)who_can_edit;
            if(data.TryGetValue("edited",out edited ))
                _page.edited=(int)(long)edited;
            if(data.TryGetValue("created",out created ))
                _page.created=(int)(long)created;

            object editor_id,views,parent,parent2,source,html,view_url;
            if(data.TryGetValue("editor_id",out editor_id ))
                _page.editor_id=(long)editor_id;
            if(data.TryGetValue("views",out views ))
                _page.views=(int)(long)views;
            if(data.TryGetValue("parent",out parent ))
                _page.parent=(string)parent;
            if(data.TryGetValue("parent2",out parent2 ))
                _page.parent2=(string)parent2;
            if(data.TryGetValue("source",out source ))
                _page.source=(string)source;
            if(data.TryGetValue("html",out html ))
                _page.html=(string)html;
            if(data.TryGetValue("view_url",out view_url ))
                _page.view_url=(string)view_url;

            return _page;
        }
Ejemplo n.º 3
0
        public static VKPage Deserialize(object page)
        {
            var    data = (Dictionary <string, object>)page;
            var    _page = new VKPage();
            object id, group_id, creator_id, title, current_user_can_edit, current_user_can_edit_access;
            object who_can_view, who_can_edit, edited, created;

            if (data.TryGetValue("id", out id))
            {
                _page.id = (long)id;
            }
            if (data.TryGetValue("group_id", out group_id))
            {
                _page.group_id = (long)group_id;
            }
            if (data.TryGetValue("creator_id", out creator_id))
            {
                _page.creator_id = (long)creator_id;
            }
            if (data.TryGetValue("title", out title))
            {
                _page.title = (string)title;
            }
            if (data.TryGetValue("current_user_can_edit", out current_user_can_edit))
            {
                _page.current_user_can_edit = (int)(long)current_user_can_edit;
            }
            if (data.TryGetValue("current_user_can_edit_access", out current_user_can_edit_access))
            {
                _page.current_user_can_edit_access = (int)(long)current_user_can_edit_access;
            }
            if (data.TryGetValue("who_can_view", out who_can_view))
            {
                _page.who_can_view = (int)(long)who_can_view;
            }
            if (data.TryGetValue("who_can_edit", out who_can_edit))
            {
                _page.who_can_edit = (int)(long)who_can_edit;
            }
            if (data.TryGetValue("edited", out edited))
            {
                _page.edited = (int)(long)edited;
            }
            if (data.TryGetValue("created", out created))
            {
                _page.created = (int)(long)created;
            }

            object editor_id, views, parent, parent2, source, html, view_url;

            if (data.TryGetValue("editor_id", out editor_id))
            {
                _page.editor_id = (long)editor_id;
            }
            if (data.TryGetValue("views", out views))
            {
                _page.views = (int)(long)views;
            }
            if (data.TryGetValue("parent", out parent))
            {
                _page.parent = (string)parent;
            }
            if (data.TryGetValue("parent2", out parent2))
            {
                _page.parent2 = (string)parent2;
            }
            if (data.TryGetValue("source", out source))
            {
                _page.source = (string)source;
            }
            if (data.TryGetValue("html", out html))
            {
                _page.html = (string)html;
            }
            if (data.TryGetValue("view_url", out view_url))
            {
                _page.view_url = (string)view_url;
            }

            return(_page);
        }