public static IResponse ETag(this IHas @this, string value)
 => @this.Header("ETag", value);
 public static IResponse Server(this IHas @this)
 => @this.Header("Server");
 public static IResponse RetryAfter(this IHas @this)
 => @this.Header("Retry-After");
 public static IResponse TransferEncoding(this IHas @this)
 => @this.Header("Transfer-Encoding");
 public static IResponse Trailer(this IHas @this)
 => @this.Header("Trailer");
 public static IResponse Vary(this IHas @this, string value)
 => @this.Header("Vary", value);
 public static IResponse Upgrade(this IHas @this, string value)
 => @this.Header("Upgrade", value);
 public static IResponse CacheControl(this IHas @this, string value)
 => @this.Header("Cache-Control", value);
 public static IResponse Age(this IHas @this)
 => @this.Header("Age");
Esempio n. 10
0
 public static IResponse Connection(this IHas @this, string value)
 => @this.Header("Connection", value);
Esempio n. 11
0
 public static IResponse CacheControl(this IHas @this)
 => @this.Header("Cache-Control");
Esempio n. 12
0
 public static IResponse Connection(this IHas @this)
 => @this.Header("Connection");
Esempio n. 13
0
 public static IResponse ConnectionClose(this IHas @this)
 => @this.Header("Connection", "close");
Esempio n. 14
0
 public static IResponse Date(this IHas @this)
 => @this.Header("Date");
Esempio n. 15
0
 public static IResponse Via(this IHas @this)
 => @this.Header("Via");
Esempio n. 16
0
 public static IResponse Age(this IHas @this, string value)
 => @this.Header("Age", value);
Esempio n. 17
0
 public static IResponse Vary(this IHas @this)
 => @this.Header("Vary");
Esempio n. 18
0
 public static IResponse Warning(this IHas @this)
 => @this.Header("Warning");
Esempio n. 19
0
 public static IResponse Upgrade(this IHas @this)
 => @this.Header("Upgrade");
Esempio n. 20
0
 public static IResponse Warning(this IHas @this, string value)
 => @this.Header("Warning", value);
Esempio n. 21
0
 public static IResponse TransferEncodingChunked(this IHas @this)
 => @this.Header("Transfer-Encoding", "chunked");
Esempio n. 22
0
 public static IResponse WwwAuthenticate(this IHas @this)
 => @this.Header("WWW-Authenticate");
Esempio n. 23
0
 public static IResponse TransferEncoding(this IHas @this, string value)
 => @this.Header("Transfer-Encoding", value);
Esempio n. 24
0
 public static IResponse WwwAuthenticate(this IHas @this, string value)
 => @this.Header("WWW-Authenticate", value);
Esempio n. 25
0
 public static IResponse Trailer(this IHas @this, string value)
 => @this.Header("Trailer", value);
Esempio n. 26
0
 public static IResponse AcceptRanges(this IHas @this)
 => @this.Header("Accept-Ranges");
Esempio n. 27
0
 public static IResponse Server(this IHas @this, string value)
 => @this.Header("Server", value);
Esempio n. 28
0
 public static IResponse AcceptRanges(this IHas @this, string value)
 => @this.Header("Accept-Ranges", value);
Esempio n. 29
0
 public static IResponse RetryAfter(this IHas @this, string value)
 => @this.Header("Retry-After", value);
Esempio n. 30
0
 public static IResponse ETag(this IHas @this)
 => @this.Header("ETag");