示例#1
0
        protected BoxFile GetBoxFile(string fileId)
        {
            var boxFileId = MakeBoxId(fileId);

            try
            {
                var file = ProviderInfo.GetBoxFile(boxFileId);
                return(file);
            }
            catch (Exception ex)
            {
                return(new ErrorFile(ex, boxFileId));
            }
        }