VkNet.Categories.MessagesCategory.GetHistoryAttachments C# (CSharp) 메소드

GetHistoryAttachments() 공개 메소드

Возвращает материалы диалога или беседы..
Страница документации ВКонтакте .
public GetHistoryAttachments ( MessagesGetHistoryAttachmentsParams @params, string &nextFrom ) : ReadOnlyCollection
@params MessagesGetHistoryAttachmentsParams
nextFrom string Новое значение start_from.
리턴 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);
        }