KeePassLib.Serialization.Kdb4File.WriteList C# (CSharp) Метод

WriteList() приватный Метод

private WriteList ( ProtectedBinaryDictionary dictBinaries ) : void
dictBinaries ProtectedBinaryDictionary
Результат void
        private void WriteList(ProtectedBinaryDictionary dictBinaries)
        {
            Debug.Assert(dictBinaries != null);
            if(dictBinaries == null) throw new ArgumentNullException("dictBinaries");

            foreach(KeyValuePair<string, ProtectedBinary> kvp in dictBinaries)
                WriteObject(kvp.Key, kvp.Value, true);
        }

Same methods

Kdb4File::WriteList ( ProtectedStringDictionary dictStrings, bool bEntryStrings ) : void
Kdb4File::WriteList ( string name, AutoTypeConfig cfgAutoType ) : void
Kdb4File::WriteList ( string name, ITimeLogger times ) : void
Kdb4File::WriteList ( string name, MemoryProtectionConfig value ) : void
Kdb4File::WriteList ( string name, PwObjectList value ) : void
Kdb4File::WriteList ( string name, PwObjectList value, bool bIsHistory ) : void
Kdb4File::WriteList ( string name, StringDictionaryEx value ) : void