public Document(string filePath, string fileName, DocTypeNames typeName) { _Initialized = false; if (_MutexObj == null) { _MutexObj = new object(); } lock (_MutexObj) { MetaData = new Dictionary <string, string>(); FileName = fileName; FilePath = filePath; TypeName = typeName; ChildDocs = new List <string>(); _Initialized = true; } }
public Document_Couch(string filePath, string FileName, DocTypeNames typeName) : base(filePath, FileName, typeName) { }