示例#1
0
 /// <summary>
 /// Gets the ApplyLink for a Job
 /// </summary>
 /// <param name="request">An ApplyLink values collection to pass to the api.</param>
 /// <returns>The uri to apply to the given job.</returns>
 public string ApplyLink(ApplyLink request) {
     ApplyLinkRequest applyRequest = new ApplyLinkRequest(request, _Settings);
     return applyRequest.Retrieve();
 }
示例#2
0
        /// <summary>
        /// Gets the ApplyLink for a Job
        /// </summary>
        /// <param name="request">An ApplyLink values collection to pass to the api.</param>
        /// <returns>The uri to apply to the given job.</returns>
        public string ApplyLink(ApplyLink request)
        {
            ApplyLinkRequest applyRequest = new ApplyLinkRequest(request, _Settings);

            return(applyRequest.Retrieve());
        }
示例#3
0
 /// <summary>
 /// Gets the ApplyLink for a Job
 /// </summary>
 /// <param name="request">A named value collection of params to pass to the api</param>
 /// <returns>The uri to apply to the given job.</returns>
 public string ApplyLink(NameValueCollection request) {
     ApplyLinkRequest applyRequest = new ApplyLinkRequest(request, _Settings);
     return applyRequest.Retrieve();
 }
示例#4
0
        /// <summary>
        /// Gets the ApplyLink for a Job
        /// </summary>
        /// <param name="request">A named value collection of params to pass to the api</param>
        /// <returns>The uri to apply to the given job.</returns>
        public string ApplyLink(NameValueCollection request)
        {
            ApplyLinkRequest applyRequest = new ApplyLinkRequest(request, _Settings);

            return(applyRequest.Retrieve());
        }