Skip to content

Commit 5b988e8

Browse files
authored
Update sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-workflow/dotnet-workflow-management-methods.md
Signed-off-by: Mark Fussell <markfussell@gmail.com>
1 parent c970d68 commit 5b988e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-workflow/dotnet-workflow-management-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The `DaprWorkflowClient` class provides methods to manage workflow instances. Be
1212

1313
### Schedule a new workflow instance
1414

15-
To start a new workflow instance, use the `ScheduleNewWorkflowAsync` method. This method requires the workflow type name and an input required by the workflow. The workflow `instancedId` is an optional argument; if not provided, a new GUID will be generated by the `DaprWorkflowClient`. The final optional argument is a `startTime` of type `DateTimeOffset` which can be used to define when the workflow instance should start. The method returns the `instanceId` of the scheduled workflow which is used for other workflow management operations.
15+
To start a new workflow instance, use the `ScheduleNewWorkflowAsync` method. This method requires the workflow type name and an input required by the workflow. The workflow `instancedId` is an optional argument; if not provided, a new GUID is generated by the `DaprWorkflowClient`. The final optional argument is a `startTime` of type `DateTimeOffset` which can be used to define when the workflow instance should start. The method returns the `instanceId` of the scheduled workflow which is used for other workflow management operations.
1616

1717
```csharp
1818
var instanceId = $"order-workflow-{Guid.NewGuid().ToString()[..8]}";

0 commit comments

Comments
 (0)