41 lines
833 B
C#
41 lines
833 B
C#
namespace Core.Helpers;
|
|
|
|
public class HttpServerHelper
|
|
{
|
|
public string GetMimeText(string key)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Combine ip and port into address
|
|
/// </summary>
|
|
/// <returns>url</returns>
|
|
public string BuildUrl()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Prepend http to the url:port
|
|
/// </summary>
|
|
/// <returns>URI</returns>
|
|
public string GetBackendUrl()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get websocket url + port
|
|
/// </summary>
|
|
public string GetWebsocketUrl()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SendTextJson(object resp, object output)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|