Microsoft.Web.Administration.ConfigurationCollectionSchema.GetElementSchema C# (CSharp) Method

GetElementSchema() private method

private GetElementSchema ( string name ) : ConfigurationElementSchema
name string
return ConfigurationElementSchema
        internal ConfigurationElementSchema GetElementSchema(string name)
        {
            if (name == ClearElementName)
            {
                return GetClearElementSchema();
            }

            return name == RemoveElementName ? GetRemoveElementSchema() : GetAddElementSchema(name);
        }