System.Diagnostics.SwitchElement.OnDeserializeUnrecognizedAttribute C# (CSharp) 메소드

OnDeserializeUnrecognizedAttribute() 보호된 메소드

protected OnDeserializeUnrecognizedAttribute ( String name, String value ) : bool
name String
value String
리턴 bool
        protected override bool OnDeserializeUnrecognizedAttribute(String name, String value)
        {
            ConfigurationProperty _propDynamic = new ConfigurationProperty(name, typeof(string), value);
            _properties.Add(_propDynamic);
            base[_propDynamic] = value; // Add them to the property bag
            Attributes.Add(name, value);
            return true;
        }