System.Configuration.ConfigurationElementCollection.Entry.GetKey C# (CSharp) Метод

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

private GetKey ( ConfigurationElementCollection ThisCollection ) : Object
ThisCollection ConfigurationElementCollection
Результат Object
            internal Object GetKey(ConfigurationElementCollection ThisCollection) {
                // For items that have been really inserted...
                if (_value != null) {
                    return ThisCollection.GetElementKeyInternal(_value);
                }
                else {
                    return _key; // These are items that only have been removed
                }

            }
ConfigurationElementCollection.Entry