finished off helpers, added few more types (might not be used)

This commit is contained in:
CWX
2025-01-09 16:43:49 +00:00
parent 75355ef850
commit cc26e1468c
45 changed files with 2368 additions and 76 deletions
+35 -1
View File
@@ -2,5 +2,39 @@
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();
}
}