Click or drag to resize

BlankNode Class

Class for representing Blank RDF Nodes.
Inheritance Hierarchy

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
[SerializableAttribute]
public class BlankNode : BaseBlankNode, IEquatable<BlankNode>, 
	IComparable<BlankNode>

The BlankNode type exposes the following members.

Constructors
  NameDescription
Protected methodBlankNode
Constructor for deserialization usage only.
Protected methodBlankNode(IGraph)
Internal Only Constructor for Blank Nodes.
Protected methodBlankNode(INodeFactory)
Internal Only constructor for Blank Nodes.
Protected methodBlankNode(SerializationInfo, StreamingContext)
Deserialization Constructor.
Protected methodBlankNode(IGraph, String)
Internal Only constructor for Blank Nodes.
Top
Properties
  NameDescription
Public propertyEffectiveType
Gets the URI of the datatype this valued node represents as a String.
(Inherited from BaseBlankNode.)
Public propertyGraph
Nodes belong to a Graph.
(Inherited from BaseNode.)
Public propertyGraphUri
Gets/Sets the Graph Uri of the Node.
(Inherited from BaseNode.)
Public propertyHasAutoAssignedID
Indicates whether this Blank Node had its ID assigned for it by the Graph.
(Inherited from BaseBlankNode.)
Public propertyInternalID
Returns the Internal Blank Node ID this Node has in the Graph.
(Inherited from BaseBlankNode.)
Public propertyNodeType
Nodes have a Type.
(Inherited from BaseNode.)
Public propertyNumericType
Gets the Numeric Type of the Node.
(Inherited from BaseBlankNode.)
Top
Methods
  NameDescription
Public methodAsBoolean
Throws an error as a Blank Node cannot be cast to a boolean.
(Inherited from BaseBlankNode.)
Public methodAsDateTime
Throws an error as a Blank Node cannot be cast to a date time.
(Inherited from BaseBlankNode.)
Public methodAsDateTimeOffset
Throws an error as a Blank Node cannot be cast to a date time offset.
(Inherited from BaseBlankNode.)
Public methodAsDecimal
Throws an error as a Blank Node cannot be cast to a decimal.
(Inherited from BaseBlankNode.)
Public methodAsDouble
Throws an error as a Blank Node cannot be cast to a double.
(Inherited from BaseBlankNode.)
Public methodAsFloat
Throws an error as a Blank Node cannot be cast to a float.
(Inherited from BaseBlankNode.)
Public methodAsInteger
Throws an error as a Blank Node cannot be cast to an integer.
(Inherited from BaseBlankNode.)
Public methodAsString
Throws an error as a Blank Node cannot be cast to a String.
(Inherited from BaseBlankNode.)
Public methodAsTimeSpan
Throws an error as a Blank Node cannot be case to a time span.
(Inherited from BaseBlankNode.)
Public methodCompareTo(BaseBlankNode)
Returns an Integer indicating the Ordering of this Node compared to another Node.
(Inherited from BaseBlankNode.)
Public methodCompareTo(BlankNode)
Implementation of Compare To for Blank Nodes.
Public methodCompareTo(IBlankNode)
Returns an Integer indicating the Ordering of this Node compared to another Node.
(Inherited from BaseBlankNode.)
Public methodCompareTo(IGraphLiteralNode)
Returns an Integer indicating the Ordering of this Node compared to another Node.
(Inherited from BaseBlankNode.)
Public methodCompareTo(ILiteralNode)
Returns an Integer indicating the Ordering of this Node compared to another Node.
(Inherited from BaseBlankNode.)
Public methodCompareTo(INode)
Returns an Integer indicating the Ordering of this Node compared to another Node.
(Inherited from BaseBlankNode.)
Public methodCompareTo(IUriNode)
Returns an Integer indicating the Ordering of this Node compared to another Node.
(Inherited from BaseBlankNode.)
Public methodCompareTo(IVariableNode)
Returns an Integer indicating the Ordering of this Node compared to another Node.
(Inherited from BaseBlankNode.)
Public methodEquals(Object)
Implementation of Equals for Blank Nodes.
(Inherited from BaseBlankNode.)
Public methodEquals(BaseBlankNode)
Determines whether this Node is equal to a Blank Node.
(Inherited from BaseBlankNode.)
Public methodEquals(BlankNode)
Determines whether this Node is equal to a Blank Node.
Public methodEquals(IBlankNode)
Determines whether this Node is equal to another.
(Inherited from BaseBlankNode.)
Public methodEquals(IGraphLiteralNode)
Determines whether this Node is equal to a Graph Literal Node (should always be false).
(Inherited from BaseBlankNode.)
Public methodEquals(ILiteralNode)
Determines whether this Node is equal to a Literal Node (should always be false).
(Inherited from BaseBlankNode.)
Public methodEquals(INode)
Implementation of Equals for Blank Nodes.
(Inherited from BaseBlankNode.)
Public methodEquals(IUriNode)
Determines whether this Node is equal to a URI Node (should always be false).
(Inherited from BaseBlankNode.)
Public methodEquals(IVariableNode)
Determines whether this Node is equal to a Variable Node (should always be false).
(Inherited from BaseBlankNode.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Gets a Hash Code for a Node.
(Inherited from BaseNode.)
Public methodGetObjectData
Gets the data for serialization.
(Inherited from BaseBlankNode.)
Public methodGetSchema
Gets the schema for XML serialization.
(Inherited from BaseNode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodReadXml
Reads the data for XML deserialization.
(Inherited from BaseBlankNode.)
Public methodToString
Returns a string representation of this Blank Node in QName form.
(Inherited from BaseBlankNode.)
Public methodToString(INodeFormatter)
Gets the String representation of the Node formatted with the given Node formatter.
(Inherited from BaseNode.)
Public methodToString(INodeFormatter, TripleSegment)
Gets the String representation of the Node formatted with the given Node formatter.
(Inherited from BaseNode.)
Public methodWriteXml
Writes the data for XML serialization.
(Inherited from BaseBlankNode.)
Top
Fields
  NameDescription
Protected field_graph
Reference to the Graph that the Node belongs to.
(Inherited from BaseNode.)
Protected field_graphUri
Uri of the Graph that the Node belongs to.
(Inherited from BaseNode.)
Protected field_hashcode
Stores the computed Hash Code for this Node.
(Inherited from BaseNode.)
Protected field_nodetype
Node Type for the Node.
(Inherited from BaseNode.)
Top
See Also