We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45da3d8 commit 18304eeCopy full SHA for 18304ee
README.md
@@ -23,6 +23,10 @@ With the SDK, you can:
23
dotnet nuget add package ServerlessWorkflow.Sdk
24
```
25
26
+```csharp
27
+services.AddServerlessWorkflow();
28
+```
29
+
30
### How to use
31
32
#### Building workflows programatically
@@ -78,3 +82,10 @@ using(Stream stream = File.OpenRead("myWorkflow.json"))
78
82
}
79
83
80
84
85
86
+#### Validating workflows
87
88
89
+var validator = serviceProvider.GetRequiredService<IValidator<WorkflowDefinition>>();
90
+var validationResult = validator.Validate(myWorkflow);
91
0 commit comments