IntelligentPlant.DataCore.HttpClient 3.4.1

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package IntelligentPlant.DataCore.HttpClient --version 3.4.1
                    
NuGet\Install-Package IntelligentPlant.DataCore.HttpClient -Version 3.4.1
                    
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="IntelligentPlant.DataCore.HttpClient" Version="3.4.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IntelligentPlant.DataCore.HttpClient" Version="3.4.1" />
                    
Directory.Packages.props
<PackageReference Include="IntelligentPlant.DataCore.HttpClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IntelligentPlant.DataCore.HttpClient --version 3.4.1
                    
#r "nuget: IntelligentPlant.DataCore.HttpClient, 3.4.1"
                    
#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.
#addin nuget:?package=IntelligentPlant.DataCore.HttpClient&version=3.4.1
                    
Install IntelligentPlant.DataCore.HttpClient as a Cake Addin
#tool nuget:?package=IntelligentPlant.DataCore.HttpClient&version=3.4.1
                    
Install IntelligentPlant.DataCore.HttpClient as a Cake Tool

IntelligentPlant.DataCore.HttpClient

This package defines types for calling the Intelligent Plant Data Core API, used by Industrial App Store apps, and on-premises apps from Intelligent Plant.

Please consider using one of the following packages to simplify configuration of Data Core API client applications:

Package App Type Description
IntelligentPlant.IndustrialAppStore.AspNetCore ASP.NET Core Provides a strongly-typed client for querying the Industrial App Store Data API, an authentication handler that is pre-configured to use the Industrial App Store for authentication, and additional services and middlewares for implementing features such as Content Security Policies.
IntelligentPlant.IndustrialAppStore.CommandLine CLI Provides a strongly-typed client for querying the Industrial App Store Data API, and services for authenticating with the Industrial App Store using the OAuth 2.0 device code authorization flow.
IntelligentPlant.IndustrialAppStore.Templates Provides project templates for dotnet new and Visual Studio for creating apps that are pre-configured to use one of the two above packages.

The packages can also be used to write on-premises apps that interface with a local Data Core API instance.

Getting Started

The following sections describe how to configure API clients for querying standalone Data Core API instances using static authentication:

Windows Authentication

To create a Data Core API client for querying a standalone Data Core API instance using Windows authentication, use the DataCoreHttpClient class, ensuring that the HttpClient you provide has the appropriate credentials configured:

var handler = new HttpClientHandler() {
    Credentials = new NetworkCredential("username", "password")
};
var httpClient = new HttpClient(handler);

var options = new DataCoreHttpClientOptions() {
    // Remember the trailing / at the end of the URL!
    DataCoreUrl = new Uri("https://path/to/data/core/")
};

var client = new DataCoreHttpClient(httpClient, options);

var dataSources = await client.DataSources.GetDataSourcesAsync();

Static Authentication Header

When creating a Data Core API client for querying a Data Core API instance using a fixed authentication header (e.g. using Basic authentication), it is not necessary to manually create the inner HTTP message handler for the HttpClient instance. Instead, default request headers can be specified on the HttpClient:

var httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(
    "Basic",
    Convert.ToBase64String(Encoding.ASCII.GetBytes("username:password"))
);

var options = new DataCoreHttpClientOptions() {
    // Remember the trailing / at the end of the URL!
    DataCoreUrl = new Uri("https://path/to/data/core/")
};

var client = new DataCoreHttpClient(httpClient, options);

var dataSources = await client.DataSources.GetDataSourcesAsync();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on IntelligentPlant.DataCore.HttpClient:

Package Downloads
IntelligentPlant.IndustrialAppStore.HttpClient

Strongly-typed client for Intelligent Plant's Industrial App Store API.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.5.0-pre.414 113 a month ago
3.5.0-pre.409 69 a month ago
3.4.1 249 2 months ago
3.4.0 257 2 months ago
3.3.0 183 4 months ago
3.3.0-pre.382 56 4 months ago
3.2.0 199 5 months ago
3.1.0 232 6 months ago
3.0.0 204 7 months ago
3.0.0-pre.361 60 7 months ago
3.0.0-pre.358 62 7 months ago
3.0.0-pre.351 63 7 months ago
3.0.0-pre.348 73 7 months ago
3.0.0-pre.339 64 8 months ago
3.0.0-pre.328 82 8 months ago
3.0.0-pre.320 64 8 months ago
2.3.0-pre.293 120 2/6/2024
2.3.0-pre.280 141 3/28/2023
2.3.0-pre.269 173 9/9/2022
2.3.0-pre.259 148 6/28/2022
2.3.0-pre.256 157 6/27/2022
2.3.0-pre.236 162 3/24/2022
2.2.3 180 8 months ago
2.2.2 172 8 months ago
2.2.1 1,367 5/11/2022
2.2.0 1,336 3/10/2022
2.1.0 1,337 2/23/2022
2.1.0-alpha.220 171 2/23/2022
2.1.0-alpha.216 158 2/23/2022
2.1.0-alpha.213 158 2/22/2022
2.1.0-alpha.210 156 2/22/2022
2.1.0-alpha.207 155 2/22/2022
2.0.0 1,331 2/17/2022
2.0.0-beta.195 157 2/17/2022
2.0.0-beta.175 161 2/10/2022
2.0.0-beta.171 161 2/9/2022
2.0.0-beta.165 174 1/13/2022
2.0.0-beta.162 169 1/6/2022
2.0.0-beta.158 166 1/5/2022
2.0.0-alpha.148 218 11/12/2021
2.0.0-alpha.139 198 11/11/2021
1.4.0 959 7/14/2021
1.2.1 843 4/7/2021
1.2.0 829 2/8/2021
1.1.0 828 1/18/2021
1.0.2 724 12/3/2020
1.0.1 763 12/3/2020
1.0.0 792 10/13/2020
1.0.0-alpha32 568 8/7/2020
1.0.0-alpha29 531 7/13/2020
1.0.0-alpha27 529 7/10/2020
1.0.0-alpha25 556 7/10/2020
1.0.0-alpha22 558 7/10/2020