Microsoft.Web.Administration.ConfigurationAttribute.ConfigurationAttribute C# (CSharp) Метод

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

Constructs instances when the external queries.
private ConfigurationAttribute ( string name, ConfigurationAttributeSchema schema, ConfigurationElement element ) : System
name string
schema ConfigurationAttributeSchema
element ConfigurationElement
Результат System
        internal ConfigurationAttribute(string name, ConfigurationAttributeSchema schema, ConfigurationElement element)
        {
            _element = element;
            Name = name;
            Schema = schema;
            IsProtected = schema?.IsEncrypted ?? false;
            var clear = this.Decrypt(this.ExtractDefaultValue());
            IsInheritedFromDefaultValue = true;
            SetValue(clear);
        }

Same methods

ConfigurationAttribute::ConfigurationAttribute ( string name, ConfigurationAttributeSchema schema, string value, ConfigurationElement element ) : System