 | WikibaseSiteInfoMakeEntityUri Method |
This is preliminary documentation and is subject to change.
Makes an entity URL out of the specified entity ID.
Namespace: WikiClientLibrary.WikibaseAssembly: WikiClientLibrary.Wikibase (in WikiClientLibrary.Wikibase.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntaxpublic string MakeEntityUri(
string entityId
)
Public Function MakeEntityUri (
entityId As String
) As String
Dim instance As WikibaseSiteInfo
Dim entityId As String
Dim returnValue As String
returnValue = instance.MakeEntityUri(entityId)
public:
String^ MakeEntityUri(
String^ entityId
)
member MakeEntityUri :
entityId : string -> string
Parameters
- entityId String
- Wikibase entity ID, such as P13, Q175.
Return Value
StringThe corresponding Wikibase entity URI. This URI can be used in RDF representations.
Exceptions
RemarksThis method simply concatenates
ConceptBaseUri and
entityId, and does not validate the given entity ID.
See Also