Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/rail/IRailHttpResponse.cs
2026-02-21 16:45:37 +08:00

28 lines
469 B
C#

using System.Collections.Generic;
namespace rail
{
public interface IRailHttpResponse : IRailComponent
{
int GetHttpResponseCode();
RailResult GetResponseHeaderKeys(List<string> header_keys);
string GetResponseHeaderValue(string header_key);
string GetResponseBodyData();
uint GetContentLength();
string GetContentType();
string GetContentRange();
string GetContentLanguage();
string GetContentEncoding();
string GetLastModified();
}
}