Interface IResponseData<TMsg, TData>
Represents a response message with an associated data type.
public interface IResponseData<TMsg, TData>
Type Parameters
TMsgThe type of the response message.
TDataThe type of the response data.
Methods
GetData(TMsg)
Extracts the data from the response message.
TData GetData(TMsg msg)
Parameters
msgTMsgThe response message.
Returns
- TData
The extracted data.