EqualityHelperAreUrisEqual Method (Uri, Uri) | 
 
            Determines whether two URIs are equal.
            
 
    Namespace: 
   VDS.RDF
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic static bool AreUrisEqual(
	Uri a,
	Uri b
)
Public Shared Function AreUrisEqual ( 
	a As Uri,
	b As Uri
) As Boolean
Parameters
- a
 - Type: SystemUri
First URI. - b
 - Type: SystemUri
Second URI. 
Return Value
Type: 
Boolean[Missing <returns> documentation for "M:VDS.RDF.EqualityHelper.AreUrisEqual(System.Uri,System.Uri)"]
Remarks
            Unlike the Equals method provided by the 
Uri class by default this takes into account Fragment IDs which are essential for checking URI equality in RDF.
            
See Also