Class MessageTypeReader<T>
A TypeReader for parsing objects implementing IMessage.
public class MessageTypeReader<T> : TypeReader where T : class, IMessage
Type Parameters
TThe type to be checked; must implement IMessage.
- Inheritance
-
MessageTypeReader<T>
- Inherited Members
Methods
ReadAsync(ICommandContext, string, IServiceProvider)
Attempts to parse the input into the desired type.
public override Task<TypeReaderResult> ReadAsync(ICommandContext context, string input, IServiceProvider services)
Parameters
contextICommandContextThe context of the command.
inputstringThe raw input of the command.
servicesIServiceProviderThe service collection used for dependency injection.
Returns
- Task<TypeReaderResult>
A task that represents the asynchronous parsing operation. The task result contains the parsing result.