Click or drag to resize
RequestCreateFromUrl Method
Create a request object from a url string.

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public static Request CreateFromUrl(
	string url
)

Parameters

url
Type: SystemString
the url we are creating from

Return Value

Type: Request
A request object that represents the reference string.
Examples
string url = "https://rally1.rallydev.com/slm/webservice/v2.0/hierarchicalrequirement/12345/defect.js?pagesize=172&fetch=Name&order=ObjectID&start=57";
Request request = Request.CreateFromUrl(url);
See Also