Method ConvertArgumentAsync
- Namespace
- DSharpPlus.CommandsNext
- Assembly
- DSharpPlus.CommandsNext.dll
ConvertArgumentAsync<T>(string, CommandContext)
Converts a string to specified type.
public Task<object> ConvertArgumentAsync<T>(string value, CommandContext ctx)
Parameters
value
stringValue to convert.
ctx
CommandContextContext in which to convert to.
Returns
- Task<object>
Converted object.
Type Parameters
T
Type to convert to.
ConvertArgumentAsync(string?, CommandContext, Type)
Converts a string to specified type.
public Task<object> ConvertArgumentAsync(string? value, CommandContext ctx, Type type)
Parameters
value
stringValue to convert.
ctx
CommandContextContext in which to convert to.
type
TypeType to convert to.
Returns
- Task<object>
Converted object.