ToString() public méthode

Gives the string representation of the resource
public ToString ( ) : String
Résultat String
Exemple #1
0
 /// <summary>
 /// Default-ctor to build a generic shape
 /// </summary>
 internal RDFShape(RDFResource shapeName) : base(shapeName.ToString())
 {
     this.Deactivated = false;
     this.Severity    = RDFValidationEnums.RDFShapeSeverity.Violation;
     this.Messages    = new List <RDFLiteral>();
     this.Targets     = new List <RDFTarget>();
     this.Constraints = new List <RDFConstraint>();
 }
Exemple #2
0
 /// <summary>
 /// Default-ctor to build a named shapes graph
 /// </summary>
 public RDFShapesGraph(RDFResource shapesGraphName) : base(shapesGraphName.ToString())
 {
     this.Shapes = new Dictionary <Int64, RDFShape>();
 }
 /// <summary>
 /// Default-ctor to build a named validation report
 /// </summary>
 internal RDFValidationReport(RDFResource reportName) : base(reportName.ToString())
 {
     this.Results = new List <RDFValidationResult>();
 }