跳到主要内容

删除域名缓存(RemoveHostCache)

AndroidiOSWindows
如果您使用的是 Unity 引擎,请参见 Unity SDK 的 RemoveHostCache

函数定义

UFUNCTION(BlueprintCallable, Category = "INTLSDKAPI")
public static void RemoveHostCache(const FString host);

入参说明

参数类型说明
hostFString域名
根据 host 决定是清除所有域名缓存还是 host 缓存

代码示例

// 删除域名缓存
UINTLSDKAPI::RemoveHostCache("www.qq.com");
// 删除所有域名缓存
UINTLSDKAPI::RemoveHostCache();