Class PropertyMapping
- Namespace
- Bonsai.Expressions
- Assembly
- Bonsai.Core.dll
Represents a dynamic assignment between a selected input source and a property of a workflow element.
public sealed class PropertyMapping
- Inheritance
-
PropertyMapping
- Inherited Members
Constructors
PropertyMapping()
Initializes a new instance of the PropertyMapping class.
public PropertyMapping()
PropertyMapping(string, string)
Initializes a new instance of the PropertyMapping class with the specified property name and source selector.
public PropertyMapping(string name, string selector)
Parameters
name
stringThe name of the property that will be assigned by this mapping.
selector
stringA string that will be used to select the input source that will assign values to this property mapping.
Properties
Name
Gets or sets the name of the property that will be assigned by this mapping.
[TypeConverter(typeof(PropertyMappingNameConverter))]
public string Name { get; set; }
Property Value
Selector
Gets or sets a string that will be used to select the input source that will assign values to this property mapping.
public string Selector { get; set; }