Xiphias.BladeFX.ThirdPartyLib.NET
1.0.4
dotnet add package Xiphias.BladeFX.ThirdPartyLib.NET --version 1.0.4
NuGet\Install-Package Xiphias.BladeFX.ThirdPartyLib.NET -Version 1.0.4
<PackageReference Include="Xiphias.BladeFX.ThirdPartyLib.NET" Version="1.0.4" />
<PackageVersion Include="Xiphias.BladeFX.ThirdPartyLib.NET" Version="1.0.4" />
<PackageReference Include="Xiphias.BladeFX.ThirdPartyLib.NET" />
paket add Xiphias.BladeFX.ThirdPartyLib.NET --version 1.0.4
#r "nuget: Xiphias.BladeFX.ThirdPartyLib.NET, 1.0.4"
#:package Xiphias.BladeFX.ThirdPartyLib.NET@1.0.4
#addin nuget:?package=Xiphias.BladeFX.ThirdPartyLib.NET&version=1.0.4
#tool nuget:?package=Xiphias.BladeFX.ThirdPartyLib.NET&version=1.0.4
Xiphias.BladeFX.ThirdPartyLibrary.NET
Third party library developed for easy access to BladeFX reporting server app within other applications. It is used to get users, reports and all other data from BladeFX.
Usage
Get reports list
GetReportList(string token, string apiUrl, int? catId, string? search = null, string returnType = "JSON", string attribute="")
//catId - only report in category
//search - search reports by name
//attribute - search by attribute name
string APIURL = "https://api.blade-fx.com"
string BladeFXURL = "https://www.blade-fx.com"
var login = new FxApiUsers();
var token = login.UserLogin(APIURL, username, password).Token;
if (token.Length > 0)
{
var reportsApi = new FxApiReport();
List<dynamic> reports =
JsonConvert.DeserializeObject<List<dynamic>>
(reportsApi.GetReportList(token, APIURL, 0, search: ""));
}
Get report preview URL
GetReportPreviewURL(token, APIURL, BladeFXURL, rDef)
string APIURL = "https://api.blade-fx.com"
string BladeFXURL = "https://www.blade-fx.com"
var login = new FxApiUsers();
var token = login.UserLogin(APIURL, username, password).Token;
if (token.Length > 0)
{
var reportsApi = new FxApiReport();
ReportParamsDef rDef = new ReportParamsDef();
rDef.rep_id = rep_id;
rDef.AddParam("@idPartnera", idPartnera.ToString());
var result = reportsApi.GetReportPreviewURL(token, APIURL, BladeFXURL, rDef);
}
Contributing
All suggestions and request can be send via mail x@xiphias.hr. We will take them into consideration for updates.
License
| 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. 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. |
-
net8.0
- BladeFx.V3.Data (>= 1.0.0)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Xiphias.BladeFX.ThirdPartyLib.NET:
| Package | Downloads |
|---|---|
|
BladeLicence
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.