Agilite 6.5.0
A C# module that provides seamless interactions with Agilit-e APIs
Requires NuGet 2.12 or higher.
Install-Package Agilite -Version 6.5.0
dotnet add package Agilite --version 6.5.0
<PackageReference Include="Agilite" Version="6.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Agilite --version 6.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
agilite
A C# module that provides seamless interactions with Agilit-e APIs.
Created by Agilit-e
Installation
Using NuGet Package Manager:
PM> Install-Package Agilite
In C#:
var agilite = new Agilite(new AgiliteConfig {
ApiKey = "{agilite_api_key}",
ApiServerUrl = "{api_server_url}", //Defaults to "https://api.agilite.io"
});
var keywords = agilite.Keywords.GetData();
if (keywords.IsSuccess) {
foreach (var keyword in keywords.ResponseData) {
Console.WriteLine(keyword.Data.Key);
Console.WriteLine(keyword.Data.IsActive);
}
}
else
{
Console.WriteLine(keywords.Error.ErrorMessage);
}
agilite
A C# module that provides seamless interactions with Agilit-e APIs.
Created by Agilit-e
Installation
Using NuGet Package Manager:
PM> Install-Package Agilite
In C#:
var agilite = new Agilite(new AgiliteConfig {
ApiKey = "{agilite_api_key}",
ApiServerUrl = "{api_server_url}", //Defaults to "https://api.agilite.io"
});
var keywords = agilite.Keywords.GetData();
if (keywords.IsSuccess) {
foreach (var keyword in keywords.ResponseData) {
Console.WriteLine(keyword.Data.Key);
Console.WriteLine(keyword.Data.IsActive);
}
}
else
{
Console.WriteLine(keywords.Error.ErrorMessage);
}
Release Notes
Initial Release
Dependencies
-
.NETCoreApp 1.0
- Microsoft.NETCore.App (>= 1.0.5)
- Newtonsoft.Json (>= 12.0.2)
-
.NETCoreApp 1.1
- Microsoft.NETCore.App (>= 1.1.2)
- Newtonsoft.Json (>= 12.0.2)
-
.NETCoreApp 2.0
- Newtonsoft.Json (>= 12.0.2)
-
.NETCoreApp 2.1
- Newtonsoft.Json (>= 12.0.2)
-
.NETCoreApp 2.2
- Newtonsoft.Json (>= 12.0.2)
-
.NETFramework 4.0
- Microsoft.AspNet.WebApi (>= 4.0.30506)
- Microsoft.Bcl.Async (>= 1.0.168)
- Newtonsoft.Json (>= 12.0.2)
-
.NETFramework 4.5
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.5.1
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.5.2
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.6
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.6.1
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.6.2
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7.1
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7.2
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.8
- Newtonsoft.Json (>= 12.0.2)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.2)
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
6.5.0 | 335 | 8/2/2019 |