コード例 #1
0
        public bool Contains(GraphMember thePredicate, GraphMember theObject)
        {
            if (!itsStore.HasResourceDenotedBy(theObject))
            {
                return(false);
            }

            Resource theObjectResource = itsStore.GetResourceDenotedBy(theObject);

            return(Contains(thePredicate, theObjectResource));
        }
コード例 #2
0
 public ConciseBoundedDescription(Node denotingNode)
 {
     itsStore    = new MemoryTripleStore();
     itsResource = itsStore.GetResourceDenotedBy(denotingNode);
 }