Beispiel #1
0
 /// <summary>Select predicate with Uri.</summary>
 public static PredicateBuilder With(this SubjectBuilder self, string predicate, out UriNode node)
 {
     node = self.Rdf().Uri(predicate);
     return(self.With(node));
 }
Beispiel #2
0
 /// <summary>Select predicate with Uri.</summary>
 public static PredicateBuilder With(this SubjectBuilder self, ReadOnlySpan <char> predicate, out UriNode node)
 {
     node = self.Rdf().Uri(predicate);
     return(self.With(node));
 }