-
-
Notifications
You must be signed in to change notification settings - Fork 44
dataabstractions IPropertyExtender
RaidMax edited this page May 21, 2023
·
1 revision
describes the capability of extending properties by name
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Abstractions
Data.Abstractions.IPropertyExtender[[IPropertyExtender]]
class Data.Abstractions.IPropertyExtender interfaceStyle;
end
Returns | Name |
---|---|
T |
GetAdditionalProperty (string name) |
void |
SetAdditionalProperty (string name, object value)adds or updates property by name |
describes the capability of extending properties by name
public void SetAdditionalProperty(string name, object value)
Type | Name | Description |
---|---|---|
string |
name | unique name of the property |
object |
value | value of the property |
adds or updates property by name
public T GetAdditionalProperty<T>(string name)
where T :
Type | Name | Description |
---|---|---|
string |
name |
Generated with ModularDoc