Show / Hide Table of Contents

Interface IUserMessageRepository

Namespace: Volo.Chat.Messages
Assembly: Volo.Chat.Domain.dll
Syntax
public interface IUserMessageRepository : IBasicRepository<UserMessage, Guid>

Methods

GetMessagesAsync(Guid, Guid, Int32, Int32, CancellationToken)

Declaration
Task<List<MessageWithDetails>> GetMessagesAsync(Guid userId, Guid targetUserId, int skipCount, int maxResultCount, CancellationToken cancellationToken = null)
Parameters
Type Name Description
Guid userId
Guid targetUserId
System.Int32 skipCount
System.Int32 maxResultCount
CancellationToken cancellationToken
Returns
Type Description
Task<List<MessageWithDetails>>
Back to top Powered by Volosoft