Parameter implements a data model for an application patameter.
Default constructor
public Void Parameter()
Initializes a new instance of Parameter.
public Void Parameter(id)
Name | Type | Summary |
---|---|---|
id | String | Parameter Id. |
Gets whether the model validation must be enforced.
public Boolean EnforceModelValidation { get; }
Parameter identification.
public String Id { get; set; }
Value os the parameter.
public String Value { get; set; }
Checks whether other is equal to this object.
public Boolean Equals(other)
Name | Type | Summary |
---|---|---|
other | Parameter | The object to check equality to. |
Checks whether obj is equal to this object.
public Boolean Equals(obj)
Name | Type | Summary |
---|---|---|
obj | Object | The object to compare this object to. |
Serves as the default hash function.
public Int32 GetHashCode()
Initializes a new instance of Parameter and loads it data from the underlaying repository.
public Parameter Load(Id)
Name | Type | Summary |
---|---|---|
Id | String | Object Id. |
Initializes a new instance of Parameter and loads it data from the underlaying repository asyncronously.
public Task<Parameter> LoadAsync(Id)
Name | Type | Summary |
---|---|---|
Id | String | Object Id. |
Returns a textual representation of this Parameter.
public String ToString()
In this document