Interface IRequestBuilder<TBuilder>
Interface for classes that can build URIs
Inherited Members
Namespace: Tableau.Migration.Net
Assembly: Tableau.Migration.dll
Syntax
public interface IRequestBuilder<TBuilder> : IRequestBuilder where TBuilder : IRequestBuilder<TBuilder>
Type Parameters
| Name | Description |
|---|---|
| TBuilder |
Methods
WithQuery(Action<IQueryStringBuilder>)
Configures the query for the URI.
Declaration
TBuilder WithQuery(Action<IQueryStringBuilder> query)
Parameters
| Type | Name | Description |
|---|---|---|
| Action<IQueryStringBuilder> | query | The callback used to build the URI's query string. |
Returns
| Type | Description |
|---|---|
| TBuilder | The current |
WithQuery(string, string)
Configures the query for the URI.
Declaration
TBuilder WithQuery(string key, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | key | The query string key. |
| string | value | The query string value. |
Returns
| Type | Description |
|---|---|
| TBuilder | The current |