DeltaV.EdgeClient.AE
0.1.1
dotnet add package DeltaV.EdgeClient.AE --version 0.1.1
NuGet\Install-Package DeltaV.EdgeClient.AE -Version 0.1.1
<PackageReference Include="DeltaV.EdgeClient.AE" Version="0.1.1" />
paket add DeltaV.EdgeClient.AE --version 0.1.1
#r "nuget: DeltaV.EdgeClient.AE, 0.1.1"
// Install DeltaV.EdgeClient.AE as a Cake Addin #addin nuget:?package=DeltaV.EdgeClient.AE&version=0.1.1 // Install DeltaV.EdgeClient.AE as a Cake Tool #tool nuget:?package=DeltaV.EdgeClient.AE&version=0.1.1
Edge Client SDK
Table of Contents
About
This repository contains a C# Edge REST API Client SDK implemented via HttpClient to simplify Edge REST API consumption. The currently available Edge endpoints covered in this SDK are Authentication, Graph, History, and Alarm and Events.
Getting Started
Prerequisites
Before working with this SDK, please ensure that you have setup the following with your Edge installation:
1. A working and reachable Edge REST API endpoint
2. Authorized Credentials for your Edge REST API endpoint
For more information, please consult the Edge Environment User Guide.
Usage
Authentication
DeltaV.EdgeClient.Authentication
var handler = new HttpClientHandler();
var client = new HttpClient(handler);
var edgeUrl = "https://localhost/"; //add your Edge REST API IP here
var user = "user"; //add your REST API username here
var pass = "pass"; //add your REST API password here
client.BaseAddress = new Uri(edgeUrl);
var token = await edgeClient.RequestClientTokenAsync(new Emerson.EdgeClient.Authentication.Models.Credentials()
{
Username = user,
Password = pass
});
edgeClient.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", token.AccessToken);
Graph
DeltaV.EdgeClient.Graph
var client = GetAuthenticatedClient(); //see Authentication sample.
var entity = await client.GetGraphByEntityIdAsync(entityId, propertyList, relationshipList);
History
Emerson.EdgeClient.History
var client = GetAuthenticatedClient(); //see Authentication sample.
var history = await client.GetHistoryByIdAsync(entityId, field);
Alarm and Events
Emerson.EdgeClient.AE
var client = GetAuthenticatedClient(); //see Authentication sample.
var history = await client.GetAeAsync(pageSize, pageNumber);
Authors
- Lawrence Benitez
- Peter Balanag
- Gershon Young
- Carlo Tamayo
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.