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