bpellens / owldotnetapi

The OwlDotNetApi is an OWL (Web Ontology Language) API and parser written in C# for the .NET platform based on the Drive RDF parser.
GNU General Public License v2.0
22 stars 9 forks source link

Class function propeties etc #1

Closed Shriyanshmit closed 9 years ago

Shriyanshmit commented 9 years ago

HI, I am using this library to parse the owl file. Is there any way to find the class functions properties. like http://owlgred.lumii.lv/online_visualization/3r5a that show all the details of owl file class.

Thanks Shreyansh

bpellens commented 9 years ago

Hi,

What exactly do you mean with the class functions properties? You can find the links pointing inwards or outwards of the class by retrieving the nodes ChildEdges. Then you can fetch whatever node is on the other end of the edge. (See test4 in the OwlDotNetApiTest project).

B