/
DC 5.9 SDK usage
DC 5.9 SDK usage
Welcome to the Digizuite C# SDK documentation. Here you will find documentation on how to use the sdk and some tips and tricks for interacting with the Digizuite in general.
Setup
To get started with the Digizuite SDK, you should first install the Digizuite packages from nuget.org Digizuite.Sdk 6.1.0.5.
Additionally the SDK has to be initialized. If you are using dotnet, an extension method AddDigizuite
is provided. Use the extension method AddDigizuite
for inspiration.
A simple example of how the initialization code looks in a console application is as follows:
var serviceCollection = new ServiceCollection();
var config = new DigizuiteConfiguration()
{
BaseUrl = new Uri("https://<Digizuite url>.com/"),
SystemUsername = "<Username>",
SystemPassword = "<Password>"
};
serviceCollection.AddDigizuite(config)
.AddDigizuiteLogging()
.AddConsoleSink();
serviceCollection.AddSingleton(typeof(ILogger<>), typeof(ConsoleLogger<>));
var serviceProvider = serviceCollection.BuildServiceProvider(true);
Use cases:
, multiple selections available,
Related content
DC 5.9 SDK Asset search
DC 5.9 SDK Asset search
Read with this
DC 5.10 SDK usage
DC 5.10 SDK usage
More like this
DC 5.8 SDK usage
DC 5.8 SDK usage
More like this
DC 6.0 SDK usage
DC 6.0 SDK usage
More like this
DC 5.9 Working with assets
DC 5.9 Working with assets
More like this
DC 5.9 API & SDK
DC 5.9 API & SDK
More like this