ManageEngine.ServiceDeskPlusApi
2022.11.18.1808
dotnet add package ManageEngine.ServiceDeskPlusApi --version 2022.11.18.1808
NuGet\Install-Package ManageEngine.ServiceDeskPlusApi -Version 2022.11.18.1808
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ManageEngine.ServiceDeskPlusApi" Version="2022.11.18.1808" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ManageEngine.ServiceDeskPlusApi --version 2022.11.18.1808
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ManageEngine.ServiceDeskPlusApi, 2022.11.18.1808"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ManageEngine.ServiceDeskPlusApi as a Cake Addin #addin nuget:?package=ManageEngine.ServiceDeskPlusApi&version=2022.11.18.1808 // Install ManageEngine.ServiceDeskPlusApi as a Cake Tool #tool nuget:?package=ManageEngine.ServiceDeskPlusApi&version=2022.11.18.1808
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Usage examples
MVC DIExtensions
Program.cs
builder.Services.AddSdpApiDataSource(builder.Configuration);
ServiceDeskPlusApiDiExtensions.cs
using ManageEngine;
namespace HelpdeskExtensions.Api.DiExtensions
{
public static class ServiceDeskPlusApiDiExtensions
{
public static IServiceCollection AddSdpApiDataSource(this IServiceCollection services, IConfiguration config)
{
var meDomain = config.GetValue<string>(Constants.EnvironmentVariableNames.MEURL)
?? throw new InvalidOperationException($"{Constants.EnvironmentVariableNames.MEURL} Can Not Be Empty!");
var meTechKey = config.GetValue<string>(Constants.EnvironmentVariableNames.METechKey)
?? throw new InvalidOperationException($"{Constants.EnvironmentVariableNames.METechKey} Can Not Be Empty!");
services.AddTransient(s =>
{
return new ServiceDeskPlusApi(meDomain, meTechKey);
});
return services;
}
}
}
RandomController.cs
namespace HelpdeskExtensions.Api.Controllers
{
[ApiController]
public class MEJiraController : ControllerBase
{
private readonly ServiceDeskPlusApi _sdpApi;
public MEJiraController(
ServiceDeskPlusApi sdpApi)
{
_sdpApi = sdpApi;
}
//...
Request woRequest = await _sdpApi.Request.View(woRequestId);
//...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2022.11.18.1808 | 323 | 11/18/2022 |