1 dataabstractions IPropertyExtender
RaidMax edited this page 2023-05-20 22:09:21 -05:00

IPropertyExtender Internal interface

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]]
  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

Source code

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