Interface IRequestMessage<TReq, TRes, TData>
Represents a request message with an associated response message and response data type.
public interface IRequestMessage<TReq, TRes, TData> : IMessage<TReq>, IMessage, IParserComposer<TReq>, IComposer, IParser<TReq>, IRequestFor<TRes>, IResponseData<TRes, TData> where TReq : IMessage<TReq> where TRes : IMessage<TRes>
Type Parameters
TReq
The type of the request message.
TRes
The type of the response message.
TData
The type of the response data.
- Inherited Members