Adf.Base.Configuration.ObjectFactoryConfigurationElementCollection.GetElementKey C# (CSharp) Method

GetElementKey() protected method

protected GetElementKey ( ConfigurationElement element ) : object
element System.Configuration.ConfigurationElement
return object
        protected override object GetElementKey(ConfigurationElement element)
        {
            ObjectFactoryConfigurationElement serviceElement = (ObjectFactoryConfigurationElement)element;
            return new TypeAndName(serviceElement.ServiceInterfaceType, serviceElement.InstanceName);
        }
ObjectFactoryConfigurationElementCollection