Home › Forums › Software Development › DotNet Documentation available?
- This topic has 2 replies, 2 voices, and was last updated 10 years, 3 months ago by Karamaoynas Polykarpos.
- AuthorPosts
- 23/06/2014 at 15:04 #1217Karamaoynas PolykarposParticipant
Is there any full documentation for EyeX SDK for dotNet?
The file “Developer’s Guide DotNet.pdf” contains only introductory information.
For example what does EngineState.DisplaySize mean?
What’s the functionality of EyeXHost methods?23/06/2014 at 15:30 #1218AndersParticipantHi Polykarpos,
there is plenty of so-called “slashdoc” documentation in the source code for the EyeX Framework for .NET. All the methods and all enum values should be documented in a format that is directly available through IntelliSense. For example:/// <summary> /// Gets the engine state: Display size, width and height, in millimeters. /// </summary> public static EngineState<Size2> DisplaySize { get { return new EngineState<Size2>(StatePaths.DisplaySize); } }
I hope you will be able to find the information you are looking for there.
We have also considered generating an API reference based on this information but it hasn’t been given high enough priority yet. Please let us know if that would be helpful.
24/06/2014 at 12:31 #1223Karamaoynas PolykarposParticipantThank you Anders. This will be helpful
PK
- AuthorPosts
- You must be logged in to reply to this topic.