コード例 #1
0
 public UserPropertyDataHolder(UserProperty schema)
 {
     Schema = schema;
     Tables = schema.AllComponents.Select(x => new UserPropertyTable(x)).ToList();
 }
コード例 #2
0
 public UserPropertyRecord(XElement component)
 {
     Component = component;
     GeoData   = string.Empty;
     UserProperty.GetAllPropNames(component).ToList().ForEach(x => _properties[x] = string.Empty);
 }