BExIS.Ddm.Providers.DummyProvider.Helpers.Helpers.Search.PropertyBuilder.PropertyBuilder C# (CSharp) Метод

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

Properties will be created based on data(Metadatalist)
public PropertyBuilder ( List data ) : System.Collections.Generic
data List
Результат System.Collections.Generic
        public PropertyBuilder(List<Metadata> data)
        {
            MetadataList = data;

            // load the cofiguration xml file
            LoadXml();

            // create all diffrent properties
            AllProperties = GetAllProperties();

            // load the Values of the Properties from metadatalist
            LoadAllValues(MetadataList);
        }