This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/
Provides an override to the process that obtains a report ID based on the full report name including category.
public override string GetReportIDByName(string fullReportName) { Dictionary<string, string> nameToIdDict = new Dictionary<string, string>(); LoadReportIDs(nameToIdDict); return nameToIdDict.ContainsKey(fullReportName) ? nameToIdDict[fullReportName] : null; }
Public Overrides Function GetReportIDByName(fullReportName As String) As String Dim nameToIdDict As New Dictionary(Of String, String) LoadReportIDs(nameToIdDict) Return If(nameToIdDict.ContainsKey(fullReportName), nameToIdDict(fullReportName), Nothing) End Function
Last edited by Joseph Adams, 2017-05-22 17:10:42