示例#1
0
 public ExposedPropertyConfiguration GetPropertyConfiguration(string propertyId)
 {
     if (!_properties.ContainsKey(propertyId))
     {
         _properties[propertyId] = new ExposedPropertyConfiguration();
     }
     return(_properties[propertyId]);
 }
示例#2
0
 public void SetPropertyConfiguration(string propertyId, ExposedPropertyConfiguration configuration)
 {
     _properties[propertyId] = configuration;
 }