Configuration of an object property.
Initializes a new instance of ObjectProperty.
public Void ObjectProperty(name, type, value, optional)
Name | Type | Summary |
---|---|---|
name | String | Property name. |
type | PropertyType | Property type. |
value | Object | Configuration value of this property. |
optional | Boolean | Whether the property is considered optional. |
Type | Summary |
---|---|
ArgumentNullOrEmptyException | Thown when name is null or empty. |
Property name.
public String Name { get; set; }
Whether the property is considered optional.
public Boolean Optional { get; set; }
Configuration value of this property.
public Object Value { get; set; }
Returns a textual representation of the object property configuration.
public String ToString()
In this document