The official Flatfile C# library, supporting .NET Standard, .NET Core, and .NET Framework.
Using the .NET Core command-line interface (CLI) tools:
dotnet add package Flatfile.net
Using the NuGet Command Line Interface (CLI):
nuget install Flatfile.net
API reference documentation is available here.
Below are code snippets of how you can use the C# SDK.
using Flatfile.net;
Flatfile flatfile = new Flatfile("YOUR_API_KEY")
Agent agent = flatfile.Agent.ListAsync(
new ListAgentsRequest{
EnvironmentId = "..."
}
);
When the API returns a non-zero status code, (4xx or 5xx response), a subclass of FlatfileException will be thrown:
using Flatfile.net;
try {
flatfile.Agents.ListAsync(...);
} catch (FlatfileException e) {
System.Console.WriteLine(e.Message)
System.Console.WriteLine(e.StatusCode)
}
429 Rate Limit, and >=500 Internal errors will all be retried twice with exponential backoff. You can override this behavior globally or per-request.
var flatfile = new Flatfile("...", new ClientOptions{
MaxRetries = 1 // Only retry once
});
The SDK defaults to a 60s timeout. You can override this behaviour globally or per-request.
var flatfile = new Flatfile("...", new ClientOptions{
TimeoutInSeconds = 20 // Lower timeout
});
You can override the HttpClient by passing in ClientOptions
.
flatfile = new Flatfile("YOUR_API_KEY", new ClientOptions{
HttpClient = ... // Override the Http Client
BaseURL = ... // Override the Base URL
})
While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to flatfile it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!