Class StandardizedDescriptionDto
This class represents a standardized description. This means that instead of solely relying on texts to describe a service, external standards and definitions are referenced for a common understanding.
Inheritance
System.Object
StandardizedDescriptionDto
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dangl.AVACloud.Client
Assembly: Dangl.AVACloud.Client.dll
Syntax
public class StandardizedDescriptionDto : INotifyPropertyChanged
Properties
| Improve this Doc View SourceStandardReference
This string property is the identifier to map to the references standard. Its type is given in the StandardReferenceType
Declaration
[JsonProperty("standardReference", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string StandardReference { get; set; }
Property Value
Type | Description |
---|---|
System.String |
StandardReferenceType
This enumeration identifies a pre-known standard used for referencing standardized descriptions.
Declaration
[JsonProperty("standardReferenceType", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public StandardReferenceTypeDto StandardReferenceType { get; set; }
Property Value
Type | Description |
---|---|
StandardReferenceTypeDto |
StlbReference
This is a special reference to the German STLB "Standardleistungsbuch Bau" reference. If this is used, the StandardReference property should not be set.
Declaration
[JsonProperty("stlbReference", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public STLBReferenceDto StlbReference { get; set; }
Property Value
Type | Description |
---|---|
STLBReferenceDto |
Methods
| Improve this Doc View SourceFromJson(String)
Declaration
public static StandardizedDescriptionDto FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
StandardizedDescriptionDto |
RaisePropertyChanged(String)
Declaration
protected virtual void RaisePropertyChanged(string propertyName = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName |
ToJson()
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String |
Events
| Improve this Doc View SourcePropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged