Skip to content

dataabstractions IPropertyExtender

RaidMax edited this page May 21, 2023 · 1 revision

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
Loading

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

Clone this wiki locally