Cedric.EpiasEMClient
1.0.1
dotnet add package Cedric.EpiasEMClient --version 1.0.1
NuGet\Install-Package Cedric.EpiasEMClient -Version 1.0.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="Cedric.EpiasEMClient" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cedric.EpiasEMClient --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Cedric.EpiasEMClient, 1.0.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.
// Install Cedric.EpiasEMClient as a Cake Addin #addin nuget:?package=Cedric.EpiasEMClient&version=1.0.1 // Install Cedric.EpiasEMClient as a Cake Tool #tool nuget:?package=Cedric.EpiasEMClient&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EPİAŞ Şeffaflık Platformu 2.0 Elektrik Piyasası Verileri
EXIST Transparency Platform 2.0 Electricity Market Data
[!IMPORTANT] EPİAŞ tarafından Şeffaflık Platformu 2.0 ile 04 Aralık 2023 tarihinde güncellenen web servisleri kullanıma açılmıştır. Eski ve yeni web servisleri 1 Mart 2024 tarihine kadar hizmet vermeye devam edecek olup sonraki süreçte yeni web servisleri ile hizmet verilecektir. EPİAŞ Duyuru
Simple Code Usage Example
using EpiasElectricityMarketClient;
….
try
{
//initialize web service client
EpiasAPIClient client = new EpiasAPIClient(new HttpClient());
//set all required values
PtfRequestDto body = new PtfRequestDto();
body.StartDate = DateTime.Now.AddDays(-7);
body.EndDate = DateTime.Now;
//call the service
PtfResponseDto response = await client.McpDataAsync(body);
// show the data
dataGridView1.DataSource = response.Items;
}
catch (ApiException ex)
{
MessageBox.Show(ex.Message.ToString());
}
Sample MCP Data
Dependence
- Newtonsoft.Json Official Site
Reference
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
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.