System.Configuration.ConfigurationElementCollection.Entry.Entry C# (CSharp) Method

Entry() private method

private Entry ( EntryType type, Object key, ConfigurationElement value ) : System
type EntryType
key Object
value ConfigurationElement
return System
            internal Entry(EntryType type, Object key, ConfigurationElement value) {
                _entryType = type;
                _key = key;
                _value = value;
            }
        }
ConfigurationElementCollection.Entry