Метод | Описание | |
---|---|---|
CombinePathAndQuery ( string path, string queryString ) : string |
Concatenates the URI query string to the URI path.
|
|
GetQueryString ( string>.IDictionary |
Converts a dictionary of string key-value pairs into a URI query string
|
|
GetUriFragment ( string tableName ) : string |
Get a uri fragment representing the resource corresponding to the table.
|
|
GetUriFragment ( string tableName, JsonObject instance ) : string |
Get a uri fragment representing the resource corresponding to the given instance in the table.
|
|
GetUriFragment ( string tableName, object id ) : string |
Get a uri fragment representing the resource corresponding to the given id in the table.
|
public static CombinePathAndQuery ( string path, string queryString ) : string | ||
path | string | The URI path |
queryString | string | The query string. |
Результат | string |
public static GetQueryString ( string>.IDictionary |
||
parameters | string>.IDictionary | The parameters from which to create a query string. |
Результат | string |
public static GetUriFragment ( string tableName ) : string | ||
tableName | string | The name of the table. |
Результат | string |
public static GetUriFragment ( string tableName, JsonObject instance ) : string | ||
tableName | string | The name of the table. |
instance | JsonObject | The instance. |
Результат | string |
public static GetUriFragment ( string tableName, object id ) : string | ||
tableName | string | The name of the table. |
id | object | The id of the instance. |
Результат | string |