VkNet.Model.LookupContactsOther.FromJson C# (CSharp) 메소드

FromJson() 공개 정적인 메소드

Разобрать из json.
public static FromJson ( VkResponse response ) : LookupContactsOther
response VkNet.Utils.VkResponse Ответ сервера.
리턴 LookupContactsOther
        public static LookupContactsOther FromJson(VkResponse response)
        {
            return new LookupContactsOther
            {
                Contact = response["contact"],
                CommonCount = response["common_count"]
            };
        }
LookupContactsOther