Example #1
0
 /// <summary>
 /// This method can be overwritten to provide a custom Blob Loader
 /// Use this if you want to load certain resources from Disk other than the ClientBin folder
 /// </summary>
 /// <param name="filename">Resource Name to be loaded</param>
 /// <returns></returns>
 public virtual byte[] cdeBlobLoader(string filename)
 {
     byte[] tBlob = TheCommonUtils.GetSystemResource(null, filename);
     return(tBlob);
 }