Exemple #1
0
        public object Clone()
        {
            TemporaryFileUploadSettings newSettings = new TemporaryFileUploadSettings();

            foreach (DictionaryEntry entry in _values)
            {
                newSettings.SetValue(entry.Key as string, entry.Value as string);
            }

            return(newSettings);
        }
        public object Clone()
        {
            TemporaryFileUploadSettings newSettings = new TemporaryFileUploadSettings();

            foreach (DictionaryEntry entry in _values)
                newSettings.SetValue(entry.Key as string, entry.Value as string);

            return newSettings;
        }