Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Summary

It will be useful to have Value as a property in the IExchangeItem which can be set, get. Currently the only way to get value is to call GetValues(ITime time, string linkID) from ILinkableComponent.

This issues was also addressed by Steven (HEC).

How to address in Version 1

Not required.

How to address in Version 2

Code Block
interface IExchangeItem
{
   object Value { get; set; }
}

...