Class RoleTypeReader<T>
A TypeReader for parsing objects implementing IRole.
public class RoleTypeReader<T> : TypeReader where T : class, IRole
Type Parameters
T
The type to be checked; must implement IRole.
- Inheritance
-
RoleTypeReader<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
context
ICommandContextThe context of the command.
input
stringThe raw input of the command.
services
IServiceProviderThe service collection used for dependency injection.
Returns
- Task<TypeReaderResult>
A task that represents the asynchronous parsing operation. The task result contains the parsing result.