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