Show / Hide Table of Contents

How to create additional properties

  1. Create property class that implements IPropertyref interface. Implement interface members.
  2. If property can be automatically imported from repository, make the class implement IImportableref interface. Implement interface members.
  3. If property can be checked at repository, make the class implement ICheckableref interface. Implement interface members.
  4. All done! Property is created. There is no need to add property to Inversion of Control, it is done automatically using reflection.
  • HINTS:
    • Methods from PropertyExtensionsref class can be used to help implement some properties.
    • There is description for each interface member in API documentation, which can help with implementation.
    • Already implemented properties can be checked to help implement the new ones.
  • Improve this Doc
In This Article
Back to top Generated by DocFX