VkNet.Categories.MessagesCategory.GetHistoryAttachments C# (CSharp) Method

GetHistoryAttachments() public method

Возвращает материалы диалога или беседы..
Страница документации ВКонтакте .
public GetHistoryAttachments ( MessagesGetHistoryAttachmentsParams @params, string &nextFrom ) : ReadOnlyCollection
@params MessagesGetHistoryAttachmentsParams
nextFrom string Новое значение start_from.
return ReadOnlyCollection
        public ReadOnlyCollection<Attachment> GetHistoryAttachments(MessagesGetHistoryAttachmentsParams @params, out string nextFrom)
        {
            var result = _vk.Call("messages.getHistoryAttachments", @params);

            nextFrom = result["next_from"];

            return result.ToReadOnlyCollectionOf<Attachment>(o => o);
        }