- Name: Sean Bedford
- Player Id: 1
- Course Id: 1
- Tees: white
- Daily Handicap: 8
| var Sdk = window.Sdk || {} | |
| Sdk.request = function (action, uri, data, formattedValue, maxPageSize) { | |
| if (!RegExp(action, "g").test("POST PATCH PUT GET DELETE")) { // Expected action verbs. | |
| throw new Error("Sdk.request: action parameter must be one of the following: " + | |
| "POST, PATCH, PUT, GET, or DELETE."); | |
| } | |
| if (!typeof uri === "string") { | |
| throw new Error("Sdk.request: uri parameter must be a string."); | |
| } |
| { | |
| "CommandName":"ResetDevice", | |
| "Parameters": | |
| { | |
| "time":"2016-09-28T14:29:33.308Z" | |
| } | |
| } |
| <div class="container"> | |
| <div class= "page-heading" > | |
| <div class= "page-header"> | |
| <h1>{{ page.title }}</h1> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-4 col-lg-3"> | |
| {% assign nav = weblinks["Primary Navigation"] %} | |
| {% if nav %} |
| public class IssueFieldsWithcomponent : IssueFields | |
| { | |
| public IEnumerable<Component> components { get; set; } | |
| public string customfield_10400 { get; set; } | |
| public Issue<IssueFieldsWithcomponent> RelatedEpic = null; | |
| public IssueFieldsWithcomponent() | |
| : base() |
| ################################################################## | |
| ### The following parameters are provided by Octopus Deploy. ### | |
| ### Uncomment these with default values for testing. ### | |
| ################################################################# | |
| #$SSRSReportServerUrl = "http://ssrs/reportserver/reportservice2005.asmx" | |
| #$SSRSDynamicDataSourceCredentialsUsername = "" | |
| #$SSRSDynamicDataSourceCredentialsPassword = "" | |
| #$SSRSReportFolder = "Project Folder" | |
| #$SSRSSharedDataSourcePath = "/Data Sources/dsShared" |
| using LibGit2Sharp; | |
| var repo = @"C:\development\git\CommunityPortal"; | |
| using (var repo = new Repository(repo)) | |
| { | |
| } |