Beispiel #1
0
 public Location(string location, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.location = location;
 }
 protected ResultDecorator(ResultDecorator nextDecorator)
 {
     NextDecorator = nextDecorator;
 }
Beispiel #3
0
 public ContentType(string contentType, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.contentType = contentType;
 }
Beispiel #4
0
 public Location(string location, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.location = location;
 }
 public ContentType(string contentType, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.contentType = contentType;
 }
Beispiel #6
0
 public Content(string content, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.content = content;
 }
Beispiel #7
0
 public StatusCode(int statusCode, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.statusCode = statusCode;
 }
Beispiel #8
0
 public Content(string content, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.content = content;
 }
Beispiel #9
0
 protected ResultDecorator(ResultDecorator nextDecorator)
 {
     NextDecorator = nextDecorator;
 }