コード例 #1
0
ファイル: ExportBase.cs プロジェクト: 80880655/Esign
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         ExportStyleManager.DisposeInstance(fileName, stream);
     }
 }
コード例 #2
0
ファイル: ExportBase.cs プロジェクト: 80880655/Esign
        private static ExportStyleManager GetStreamInstance(Stream stream)
        {
            ExportStyleManager result = (ExportStyleManager)instances2[stream];

            if (result == null)
            {
                result = new ExportStyleManager("", stream);
                instances2.Add(stream, result);
            }
            return(result);
        }
コード例 #3
0
ファイル: ExportBase.cs プロジェクト: 80880655/Esign
        private static ExportStyleManager GetFileInstance(string fileName)
        {
            ExportStyleManager result = (ExportStyleManager)instances[fileName];

            if (result == null)
            {
                result = new ExportStyleManager(fileName, null);
                instances.Add(fileName, result);
            }
            return(result);
        }
コード例 #4
0
ファイル: ExportHtmlXmlTxt.cs プロジェクト: 80880655/Esign
 public ExportDefaultProvider(Stream stream) : base(stream)
 {
     styleManager = ExportStyleManager.GetInstance("", stream);
 }
コード例 #5
0
ファイル: ExportHtmlXmlTxt.cs プロジェクト: 80880655/Esign
 public ExportDefaultProvider(string fileName) : base(fileName)
 {
     styleManager = ExportStyleManager.GetInstance(fileName, null);
 }