コード例 #1
0
ファイル: Location.cs プロジェクト: kendaleiv/restfulie.net
 public Location(string location, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.location = location;
 }
コード例 #2
0
 protected ResultDecorator(ResultDecorator nextDecorator)
 {
     NextDecorator = nextDecorator;
 }
コード例 #3
0
 public ContentType(string contentType, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.contentType = contentType;
 }
コード例 #4
0
 public Location(string location, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.location = location;
 }
コード例 #5
0
 public ContentType(string contentType, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.contentType = contentType;
 }
コード例 #6
0
ファイル: Content.cs プロジェクト: seixasfelipe/restfulie.net
 public Content(string content, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.content = content;
 }
コード例 #7
0
 public StatusCode(int statusCode, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.statusCode = statusCode;
 }
コード例 #8
0
 public Content(string content, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.content = content;
 }
コード例 #9
0
 protected ResultDecorator(ResultDecorator nextDecorator)
 {
     NextDecorator = nextDecorator;
 }