コード例 #1
0
 public static BaseReport FromFriendlyName(string friendlyName)
 {
     byte[] data = null;
     //get data
     //field Select * From ReportStore Where friendlyName = friendlyName
     //read data into data
     return(BaseReport.Deserialize(data));
 }
コード例 #2
0
 public static BaseReport FromBinary(byte[] data)
 {
     return(BaseReport.Deserialize(data));
 }