Click or drag to resize
Request Constructor (DynamicJsonObject)
Create a new Request for the specified collection. (ie Defect.Tasks) The collection should have a _ref property.

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public Request(
	DynamicJsonObject collection
)

Parameters

collection
Type: Rally.RestApi.JsonDynamicJsonObject
The object containing the collection ref
Examples
DynamicJsonObject collection = new DynamicJsonObject();
collection["_ref"] = "/hierarchicalrequirement/12345/defect.js";
Request request = new Request(collection);
See Also