Interface IPropertyContainer
Represents a property container
Namespace: DNVGL.One.Compute.Core.FlowModel
Assembly: DNVGL.One.Compute.Core.dll
Syntax
public interface IPropertyContainer : IEnumerable<Property>
Properties
View SourceItem[String]
Gets or sets the specified property.
Declaration
string this[string property] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | property | The property. |
Property Value
| Type | Description |
|---|---|
| System.String | The property value. |
Methods
View SourceAdd(String, String)
Adds a property with name and value.
Declaration
void Add(string propertyName, string propertyValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | propertyName | Name of the property. |
| System.String | propertyValue | The property value. |