SharpCifs.Util.Sharpen.Properties.PutAll C# (CSharp) Method

PutAll() public method

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