Converts an ID property value to a full URI

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public abstract string MapIdToUri(
	PropertyInfo identifierProperty,
	string id
)
Visual Basic
Public MustOverride Function MapIdToUri ( 
	identifierProperty As PropertyInfo,
	id As String
) As String
Visual C++
public:
virtual String^ MapIdToUri(
	PropertyInfo^ identifierProperty, 
	String^ id
) abstract
F#
abstract MapIdToUri : 
        identifierProperty : PropertyInfo * 
        id : string -> string 

Parameters

identifierProperty
Type: System.Reflection..::..PropertyInfo
The property that provided the ID value
id
Type: System..::..String
The ID value

Return Value

Type: String
The URI generated from the ID property value

See Also