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 full name including category based on the report ID.
public override string GetReportNameById(string id) { Dictionary<string, string> nameToIdDict = new Dictionary<string, string>(); LoadReportNames(nameToIdDict); return nameToIdDict.ContainsKey(id) ? nameToIdDict[id] : null; }
Public Overrides Function GetReportNameById(id As String) As String Dim nameToIdDict As New Dictionary(Of String, String) LoadReportNames(nameToIdDict) Return If(nameToIdDict.ContainsKey(id), nameToIdDict(id), Nothing) End Function
Last edited by Joseph Adams, 2017-05-22 17:10:58