コード例 #1
0
ファイル: BoxDaoBase.cs プロジェクト: ONLYOFFICE/AppServer
        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));
            }
        }