Microsoft.Web.Administration.ConfigurationCollectionSchema.GetAddElementSchema C# (CSharp) Méthode

GetAddElementSchema() public méthode

public GetAddElementSchema ( string elementName ) : ConfigurationElementSchema
elementName string
Résultat ConfigurationElementSchema
        public ConfigurationElementSchema GetAddElementSchema(string elementName)
        {
            return (from name in _addNames
                    where elementName == name
                    select AddSchemas.First(item => item.Path.EndsWith(name, System.StringComparison.Ordinal))).FirstOrDefault();
        }