SobekCM.Resource_Object.Configuration.Metadata_Configuration.Get_File_DmdSec_ReaderWriter C# (CSharp) Méthode

Get_File_DmdSec_ReaderWriter() public méthode

Get a file-level dmdSec METS section reader/writer by the METS file MDTYPE and OTHERMDTYPE attributes present in the METS section tag
public Get_File_DmdSec_ReaderWriter ( string MdType, string OtherMdType ) : iFile_dmdSec_ReaderWriter
MdType string MDTYPE attribute from the METS file section being read
OtherMdType string OTHERMDTYPE attribute from the METS file section being read
Résultat iFile_dmdSec_ReaderWriter
        public iFile_dmdSec_ReaderWriter Get_File_DmdSec_ReaderWriter(string MdType, string OtherMdType)
        {
            Tuple<string, string> thisMappingKey = new Tuple<string, string>(MdType.ToUpper(), OtherMdType.ToUpper());
            return fileDmdSecDictionary.ContainsKey(thisMappingKey) ? fileDmdSecDictionary[thisMappingKey] : null;
        }