Commands: How to get full url for a document?
UrlFor
is a helper method that returns full url for a given document key.
Syntax
string UrlFor(string documentKey);
Parameters
documentKey
string
Key of a document for which full url will be returned
Return Value
string
Full url for a given document key
Example I
// http://localhost:8080/databases/Northwind/docs/employees/1
string url = store.DatabaseCommands.UrlFor("employees/1");
Example II
// http://localhost:8080/docs/employees/1
string url = store.DatabaseCommands.ForSystemDatabase().UrlFor("employees/1");
Please enable JavaScript to view the comments powered by Disqus.