Class Request<TRequestData, TResponseData>
Request is base class for all requests
Inheritance
Inherited Members
Namespace: KuberWMS.API
Assembly: KuberWMS.dll
Syntax
public abstract class Request<TRequestData, TResponseData> : RequestDefaults
Type Parameters
Name | Description |
---|---|
TRequestData | The type of the request data. |
TResponseData | The type of the response data. |
Constructors
Request()
Initializes a new instance of the Request<TRequestData, TResponseData> class.
Declaration
public Request()
Properties
AuthToken
Gets or sets the authentication token.
Declaration
public string AuthToken { get; set; }
Property Value
Type | Description |
---|---|
System. |
The authentication token. |
BaseUrl
Gets or sets the base URL.
Declaration
public string BaseUrl { get; set; }
Property Value
Type | Description |
---|---|
System. |
The base URL. |
Body
Gets or sets the body.
Declaration
public TRequestData Body { get; set; }
Property Value
Type | Description |
---|---|
TRequest |
The body. |
BodyParams
Gets or sets the body parameters.
Declaration
public IDictionary<string, string> BodyParams { get; set; }
Property Value
Type | Description |
---|---|
System. |
The body parameters. |
FilePaths
Gets or sets the file paths.
Declaration
public List<string> FilePaths { get; set; }
Property Value
Type | Description |
---|---|
System. |
The file paths. |
Headers
Gets or sets the headers.
Declaration
public IDictionary<string, string> Headers { get; set; }
Property Value
Type | Description |
---|---|
System. |
The headers. |
IsAuthRequired
Gets or sets a value indicating whether this instance is authentication required.
Declaration
public bool IsAuthRequired { get; set; }
Property Value
Type | Description |
---|---|
System. |
|
Method
Gets or sets the method.
Declaration
public Method Method { get; set; }
Property Value
Type | Description |
---|---|
Rest |
The method. |
PathParams
Gets or sets the path parameters.
Declaration
public IDictionary<string, string> PathParams { get; set; }
Property Value
Type | Description |
---|---|
System. |
The path parameters. |
QueryParams
Gets or sets the query parameters.
Declaration
public IDictionary<string, string> QueryParams { get; set; }
Property Value
Type | Description |
---|---|
System. |
The query parameters. |
ServiceUrl
Gets or sets the service URL.
Declaration
public string ServiceUrl { get; set; }
Property Value
Type | Description |
---|---|
System. |
The service URL. |
Methods
AddHeader(String, String)
Adds the header.
Declaration
protected void AddHeader(string key, string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key. |
System. |
value | The value. |
Execute(TRequestData)
Executes the specified request data.
Declaration
public Response<TRequestData, TResponseData> Execute(TRequestData requestData)
Parameters
Type | Name | Description |
---|---|---|
TRequest |
requestData | The request data. |
Returns
Type | Description |
---|---|
Response<TRequestData, TResponseData> |
GetBodyParam(String)
Gets the path parameter.
Declaration
protected string GetBodyParam(string key)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key. |
Returns
Type | Description |
---|---|
System. |
GetPathParam(String)
Gets the path parameter.
Declaration
protected string GetPathParam(string key)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key. |
Returns
Type | Description |
---|---|
System. |
GetResponse(IRestResponse)
Gets the response.
Declaration
protected virtual Response<TRequestData, TResponseData> GetResponse(IRestResponse restResponse)
Parameters
Type | Name | Description |
---|---|---|
Rest |
restResponse | The rest response. |
Returns
Type | Description |
---|---|
Response<TRequestData, TResponseData> |
SetBodyParam(String, String)
Sets the path parameter.
Declaration
protected void SetBodyParam(string key, string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key. |
System. |
value | The value. |
SetPathParam(String, String)
Sets the path parameter.
Declaration
protected void SetPathParam(string key, string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key. |
System. |
value | The value. |