RallyRestApiDownloadAttachment Method |
Downloads an attachment from Rally.
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntaxpublic AttachmentResult DownloadAttachment(
string relativeUrl
)
Public Function DownloadAttachment (
relativeUrl As String
) As AttachmentResult
public:
AttachmentResult^ DownloadAttachment(
String^ relativeUrl
)
member DownloadAttachment :
relativeUrl : string -> AttachmentResult
Parameters
- relativeUrl
- Type: SystemString
The relative URL to the attachment.
Return Value
Type:
AttachmentResultThe result of the request.
Examplesstring relativeUrl = "/slm/attachment/12345678900/image_file_name.jpg"
AttachmentResult attachmentResult = DownloadAttachment(relativeUrl);
See Also