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