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