dataabstractions IPropertyExtender - RaidMax/IW4M-Admin GitHub Wiki
Internal interface
IPropertyExtender Description
describes the capability of extending properties by name
Diagram
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Abstractions
Data.Abstractions.IPropertyExtender[IPropertyExtender](/RaidMax/IW4M-Admin/wiki/IPropertyExtender)
class Data.Abstractions.IPropertyExtender interfaceStyle;
end
Members
Methods
Public methods
Returns | Name |
---|---|
T |
GetAdditionalProperty (string name) |
void |
SetAdditionalProperty (string name, object value)adds or updates property by name |
Details
Summary
describes the capability of extending properties by name
Methods
SetAdditionalProperty
public void SetAdditionalProperty(string name, object value)
Arguments
Type | Name | Description |
---|---|---|
string |
name | unique name of the property |
object |
value | value of the property |
Summary
adds or updates property by name
GetAdditionalProperty
public T GetAdditionalProperty<T>(string name)
where T :
Arguments
Type | Name | Description |
---|---|---|
string |
name |
Generated with ModularDoc