VkNet.Model.LookupContactsResult.FromJson C# (CSharp) Method

FromJson() public static method

Разобрать из json.
public static FromJson ( VkResponse response ) : LookupContactsResult
response VkNet.Utils.VkResponse Ответ сервера.
return LookupContactsResult
        public static LookupContactsResult FromJson(VkResponse response)
        {
            return new LookupContactsResult
            {
                FoundList = response["found"].ToReadOnlyCollectionOf<User>(x => x),
                Other = response["other"].ToReadOnlyCollectionOf<LookupContactsOther>(x => x)
            };
        }
LookupContactsResult