mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
10 lines
357 B
C#
10 lines
357 B
C#
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IResponseAdapter<T> {
|
|
void SetCharset(T response, string charset);
|
|
void SetMimeType(T response, string mimeType);
|
|
void SetStatus(T response, int statusCode, string statusText);
|
|
void SetHeader(T response, string header, string value);
|
|
string? GetHeader(T response, string header);
|
|
}
|
|
}
|