SharpCifs.Util.Sharpen.Properties.PutAll C# (CSharp) Méthode

PutAll() public méthode

public PutAll ( Hashtable properties ) : void
properties Hashtable
Résultat void
        public void PutAll(Hashtable properties)
        {
            foreach (var key in properties.Keys)
            {
                //_properties.Add(key, properties[key]);
                _properties.Put(key, properties[key]);
            }
        }