Sets the base uri for the query if it's not set in the constructor.
Namespace: Couchbase.ViewsAssembly: Couchbase (in Couchbase.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic IViewQuery BaseUri(
string uri
)
Public Function BaseUri (
uri As String
) As IViewQuery
public:
virtual IViewQuery^ BaseUri(
String^ uri
) sealed
abstract BaseUri :
uri : string -> IViewQuery
override BaseUri :
uri : string -> IViewQuery
Parameters
- uri
- Type: SystemString
The base uri to use - this is normally set internally and may be overridden by configuration.
Return Value
Type:
IViewQueryAn IViewQuery object for chaining
Implements
IViewQueryBaseUri(String)
RemarksNote that this will override the baseUri set in the ctor. Additionally, this method may be called internally by the
IBucket and overridden.
See Also