1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Browser.CEF/Interfaces/IResponseAdapter.cs

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);
}
}