Table of Contents

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 string

Value to convert.

ctx CommandContext

Context 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 string

Value to convert.

ctx CommandContext

Context in which to convert to.

type Type

Type to convert to.

Returns

Task<object>

Converted object.