Game Framework
2021.05.31
|
Web 请求组件。 更多...
Public 成员函数 | |
TaskInfo | GetWebRequestInfo (int serialId) |
根据 Web 请求任务的序列编号获取 Web 请求任务的信息。 更多... | |
TaskInfo[] | GetWebRequestInfos (string tag) |
根据 Web 请求任务的标签获取 Web 请求任务的信息。 更多... | |
void | GetAllWebRequestInfos (string tag, List< TaskInfo > results) |
根据 Web 请求任务的标签获取 Web 请求任务的信息。 更多... | |
TaskInfo[] | GetAllWebRequestInfos () |
获取所有 Web 请求任务的信息。 更多... | |
void | GetAllWebRequestInfos (List< TaskInfo > results) |
获取所有 Web 请求任务的信息。 更多... | |
int | AddWebRequest (string webRequestUri) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, string tag) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, int priority) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData, string tag) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm, string tag) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData, int priority) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm, int priority) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, string tag, int priority) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, string tag, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, int priority, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData, string tag, int priority) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm, string tag, int priority) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData, string tag, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm, string tag, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData, int priority, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm, int priority, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, string tag, int priority, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, byte[] postData, string tag, int priority, object userData) |
增加 Web 请求任务。 更多... | |
int | AddWebRequest (string webRequestUri, WWWForm wwwForm, string tag, int priority, object userData) |
增加 Web 请求任务。 更多... | |
bool | RemoveWebRequest (int serialId) |
根据 Web 请求任务的序列编号移除 Web 请求任务。 更多... | |
int | RemoveWebRequests (string tag) |
根据 Web 请求任务的标签移除 Web 请求任务。 更多... | |
int | RemoveAllWebRequests () |
移除所有 Web 请求任务。 更多... | |
Protected 成员函数 | |
override void | Awake () |
游戏框架组件初始化。 更多... | |
属性 | |
int | TotalAgentCount [get] |
获取 Web 请求代理总数量。 更多... | |
int | FreeAgentCount [get] |
获取可用 Web 请求代理数量。 更多... | |
int | WorkingAgentCount [get] |
获取工作中 Web 请求代理数量。 更多... | |
int | WaitingTaskCount [get] |
获取等待 Web 请求数量。 更多... | |
float | Timeout [get, set] |
获取或设置 Web 请求超时时长,以秒为单位。 更多... | |
Web 请求组件。
int AddWebRequest | ( | string | webRequestUri | ) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData, | ||
int | priority | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
priority | Web 请求任务的优先级。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData, | ||
int | priority, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
priority | Web 请求任务的优先级。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData, | ||
string | tag | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
tag | Web 请求任务的标签。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData, | ||
string | tag, | ||
int | priority | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
tag | Web 请求任务的标签。 |
priority | Web 请求任务的优先级。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData, | ||
string | tag, | ||
int | priority, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
tag | Web 请求任务的标签。 |
priority | Web 请求任务的优先级。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
byte[] | postData, | ||
string | tag, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
postData | 要发送的数据流。 |
tag | Web 请求任务的标签。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
int | priority | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
priority | Web 请求任务的优先级。 |
int AddWebRequest | ( | string | webRequestUri, |
int | priority, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
priority | Web 请求任务的优先级。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
string | tag | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
tag | Web 请求任务的标签。 |
int AddWebRequest | ( | string | webRequestUri, |
string | tag, | ||
int | priority | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
tag | Web 请求任务的标签。 |
priority | Web 请求任务的优先级。 |
int AddWebRequest | ( | string | webRequestUri, |
string | tag, | ||
int | priority, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
tag | Web 请求任务的标签。 |
priority | Web 请求任务的优先级。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
string | tag, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
tag | Web 请求任务的标签。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm, | ||
int | priority | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
priority | Web 请求任务的优先级。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm, | ||
int | priority, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
priority | Web 请求任务的优先级。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm, | ||
string | tag | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
tag | Web 请求任务的标签。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm, | ||
string | tag, | ||
int | priority | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
tag | Web 请求任务的标签。 |
priority | Web 请求任务的优先级。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm, | ||
string | tag, | ||
int | priority, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
tag | Web 请求任务的标签。 |
priority | Web 请求任务的优先级。 |
userData | 用户自定义数据。 |
int AddWebRequest | ( | string | webRequestUri, |
WWWForm | wwwForm, | ||
string | tag, | ||
object | userData | ||
) |
增加 Web 请求任务。
webRequestUri | Web 请求地址。 |
wwwForm | WWW 表单。 |
tag | Web 请求任务的标签。 |
userData | 用户自定义数据。 |
|
protectedvirtual |
游戏框架组件初始化。
TaskInfo [] GetAllWebRequestInfos | ( | ) |
获取所有 Web 请求任务的信息。
void GetAllWebRequestInfos | ( | List< TaskInfo > | results | ) |
获取所有 Web 请求任务的信息。
results | 所有 Web 请求任务的信息。 |
void GetAllWebRequestInfos | ( | string | tag, |
List< TaskInfo > | results | ||
) |
根据 Web 请求任务的标签获取 Web 请求任务的信息。
tag | 要获取信息的 Web 请求任务的标签。 |
results | Web 请求任务的信息。 |
TaskInfo GetWebRequestInfo | ( | int | serialId | ) |
根据 Web 请求任务的序列编号获取 Web 请求任务的信息。
serialId | 要获取信息的 Web 请求任务的序列编号。 |
TaskInfo [] GetWebRequestInfos | ( | string | tag | ) |
根据 Web 请求任务的标签获取 Web 请求任务的信息。
tag | 要获取信息的 Web 请求任务的标签。 |
int RemoveAllWebRequests | ( | ) |
移除所有 Web 请求任务。
bool RemoveWebRequest | ( | int | serialId | ) |
根据 Web 请求任务的序列编号移除 Web 请求任务。
serialId | 要移除 Web 请求任务的序列编号。 |
int RemoveWebRequests | ( | string | tag | ) |
根据 Web 请求任务的标签移除 Web 请求任务。
tag | 要移除 Web 请求任务的标签。 |
|
get |
获取可用 Web 请求代理数量。
|
getset |
获取或设置 Web 请求超时时长,以秒为单位。
|
get |
获取 Web 请求代理总数量。
|
get |
获取等待 Web 请求数量。
|
get |
获取工作中 Web 请求代理数量。