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