6 references to CreateCommandArguments
Aspire.Hosting (3)
ApplicationModel\ResourceCommandService.cs (1)
510
var result =
CreateCommandArguments
(resourceEvent.ResourceId, commandName, options.ArgumentValues);
Backchannel\AuxiliaryBackchannelRpcTarget.cs (2)
348
return resourceCommandService.
CreateCommandArguments
(request.ResourceName, request.CommandName, argumentValues: null);
353
JsonValueKind.Object => resourceCommandService.
CreateCommandArguments
(request.ResourceName, request.CommandName, ConvertObjectArgumentValues(arguments.AsObject())),
Aspire.Hosting.Tests (3)
ResourceCommandServiceTests.cs (3)
796
var (arguments, errorMessage) = app.ResourceCommands.
CreateCommandArguments
("myResource", "mycommand", argumentValues);
828
var (arguments, errorMessage) = app.ResourceCommands.
CreateCommandArguments
("myResource", "mycommand", argumentValues);
869
var (arguments, errorMessage) = app.ResourceCommands.
CreateCommandArguments
("myResource", "mycommand", argumentValues);