File tree Expand file tree Collapse file tree
docs/develop/dotnet/activities Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ You can pass the Activity as either a lambda expression or a string Activity typ
228228// Using a lambda expression (type-safe)
229229var result = await client .ExecuteActivityAsync (
230230 () => MyActivities .ComposeGreetingAsync (new ComposeGreetingInput (" Hello" , " World" )),
231- new (" my -activity-id" , " my-task-queue " )
231+ new (" standalone -activity-id" , " standalone-activity-sample " )
232232 {
233233 ScheduleToCloseTimeout = TimeSpan .FromSeconds (10 ),
234234 });
@@ -237,7 +237,7 @@ var result = await client.ExecuteActivityAsync(
237237var result = await client .ExecuteActivityAsync <string >(
238238 " ComposeGreeting" ,
239239 new object ?[] { new ComposeGreetingInput (" Hello" , " World" ) },
240- new (" my -activity-id" , " my-task-queue " )
240+ new (" standalone -activity-id" , " standalone-activity-sample " )
241241 {
242242 ScheduleToCloseTimeout = TimeSpan .FromSeconds (10 ),
243243 });
You can’t perform that action at this time.
0 commit comments