Hello everybody,
In the report designer we can manage the headers for a JSON data source:
However, I am looking for the headers of the data source inside the dotnet code but I have not found them:
Please, could you tell me how to get the headers of a data source looking inside the data source object (StiDataSource class)?
Thanks in advance
Regards
Access JSON Data Source headers from dotnet code
-
- Posts: 7289
- Joined: Tue Mar 20, 2018 5:34 am
Re: Access JSON Data Source headers from dotnet code
Hello,
You need to use the StiJsonDatabase:
StiJsonDatabase jsondb = new StiJsonDatabase();
jsondb.Headers.Add();
Thank you.
You need to use the StiJsonDatabase:
StiJsonDatabase jsondb = new StiJsonDatabase();
jsondb.Headers.Add();
Thank you.