Пример #1
0
 public Location(string location, ResultDecorator nextDecorator) : base(nextDecorator)
 {
     this.location = location;
 }
 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
 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;
 }