コード例 #1
0
 public Result(
     RallyResults.Common.Status status,
     string description)
 {
     this.Status      = status;
     this.Description = description;
 }
コード例 #2
0
 public Result(
     RallyResults.Common.Status status,
     string description,
     object value)
 {
     this.Status      = status;
     this.Description = description;
     this.Value       = value;
 }
コード例 #3
0
 public Result(
     RallyResults.Common.Status status)
 {
     this.Status = status;
 }