Class FlatAvaProject
This model contains a flattened represention of an AVA project, which
makes it easy to use in systems that expect elements in a list form.
Inheritance
System.Object
FlatAvaProject
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 FlatAvaProject : INotifyPropertyChanged
Properties
| Improve this Doc View SourceElements
The flattened elements of the project.
Declaration
[JsonProperty("elements", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ObservableCollection<FlatElementDto> Elements { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<FlatElementDto> |
Project
The original project, including the service specification, but
no elements.
Declaration
[JsonProperty("project", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ProjectDto Project { get; set; }
Property Value
Type | Description |
---|---|
Dangl.AVA.IO.Dto.v1.ProjectDto |
Methods
| Improve this Doc View SourceFromJson(String)
Declaration
public static FlatAvaProject FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
FlatAvaProject |
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