| 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.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public 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 Remarks This method simply concatenates
ConceptBaseUri and
entityId, and does not validate the given entity ID.
See Also