Skip to content

C# SDK

Source

GitHub: conductor-oss/csharp-sdk | Report issues and contribute on GitHub.

⭐ Conductor OSS

Show support for the Conductor OSS. Please help spread the awareness by starring Conductor repo.

GitHub stars

Setup Conductor C# Package​

dotnet add package conductor-csharp

Configurations

Authentication Settings (Optional)

Configure the authentication settings if your Conductor server requires authentication. * keyId: Key for authentication. * keySecret: Secret for the key.

authenticationSettings: new OrkesAuthenticationSettings(
    KeyId: "key",
    KeySecret: "secret"
)

Access Control Setup

See Access Control for more details on role-based access control with Conductor and generating API keys for your environment.

Configure API Client

using Conductor.Api;
using Conductor.Client;
using Conductor.Client.Authentication;

var configuration = new Configuration() {
    BasePath = basePath,
    AuthenticationSettings = new OrkesAuthenticationSettings("keyId", "keySecret")
};

var workflowClient = configuration.GetClient<WorkflowResourceApi>();

workflowClient.StartWorkflow(
    name: "test-sdk-csharp-workflow",
    body: new Dictionary<string, object>(),
    version: 1
)

Next: Create and run task workers

Examples

Browse all examples on GitHub: conductor-oss/csharp-sdk/csharp-examples

Example Type
Examples directory
Humantaskexamples file
Program file
Runner file
Testworker file
Utils directory
Workflowexamples file