ThoughtWorksMingleLib.MinglePropertyDefinition.MinglePropertyDefinition C# (CSharp) Метод

MinglePropertyDefinition() публичный Метод

Constructs a new MinglePropertyDefinition from the XML of a property_definition returned by Mingle's API
public MinglePropertyDefinition ( string propertyDefinitionXml ) : System.Collections
propertyDefinitionXml string
Результат System.Collections
        public MinglePropertyDefinition(string propertyDefinitionXml)
        {
            _propertyDefinition = XElement.Parse(propertyDefinitionXml);
            _propertyDefinition.Elements().ToList().ForEach(e => _hashed.Add(e.Name.LocalName, e));
        }
MinglePropertyDefinition