// bool
 public bool SetMatchAnyTag(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, bool bMatchAnyTag /*bool*/)
 {
     return(platform.ISteamUGC_SetMatchAnyTag(handle.Value, bMatchAnyTag));
 }
 // bool
 public bool SetRankedByTrendDays(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint unDays /*uint32*/)
 {
     return(platform.ISteamUGC_SetRankedByTrendDays(handle.Value, unDays));
 }
示例#3
0
 // bool
 public bool AddRequiredKeyValueTag(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, string pKey /*const char **/, string pValue /*const char **/)
 {
     return(platform.ISteamUGC_AddRequiredKeyValueTag(handle.Value, Utility.GetUtf8Bytes(pKey), Utility.GetUtf8Bytes(pValue)));
 }
 // bool
 public bool SetLanguage(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, string pchLanguage /*const char **/)
 {
     return(platform.ISteamUGC_SetLanguage(handle.Value, pchLanguage));
 }
 // bool
 public bool SetReturnOnlyIDs(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, bool bReturnOnlyIDs /*bool*/)
 {
     return(platform.ISteamUGC_SetReturnOnlyIDs(handle.Value, bReturnOnlyIDs));
 }
 // bool
 public bool SetReturnTotalOnly(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, bool bReturnTotalOnly /*bool*/)
 {
     return(platform.ISteamUGC_SetReturnTotalOnly(handle.Value, bReturnTotalOnly));
 }
 // bool
 public bool GetQueryUGCResult(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint index /*uint32*/, ref SteamUGCDetails_t pDetails /*struct SteamUGCDetails_t **/)
 {
     return(platform.ISteamUGC_GetQueryUGCResult(handle.Value, index, ref pDetails));
 }
 // bool
 public bool SetReturnLongDescription(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, bool bReturnLongDescription /*bool*/)
 {
     return(platform.ISteamUGC_SetReturnLongDescription(handle.Value, bReturnLongDescription));
 }
 // uint
 public uint GetQueryUGCNumAdditionalPreviews(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint index /*uint32*/)
 {
     return(platform.ISteamUGC_GetQueryUGCNumAdditionalPreviews(handle.Value, index));
 }
 // uint
 public uint GetQueryUGCNumKeyValueTags(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint index /*uint32*/)
 {
     return(platform.ISteamUGC_GetQueryUGCNumKeyValueTags(handle.Value, index));
 }
 // bool
 public bool GetQueryUGCChildren(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint index /*uint32*/, PublishedFileId_t *pvecPublishedFileID /*PublishedFileId_t **/, uint cMaxEntries /*uint32*/)
 {
     return(platform.ISteamUGC_GetQueryUGCChildren(handle.Value, index, (IntPtr)pvecPublishedFileID, cMaxEntries));
 }
 // bool
 public bool AddRequiredTag(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, string pTagName /*const char **/)
 {
     return(platform.ISteamUGC_AddRequiredTag(handle.Value, pTagName));
 }
 // bool
 public bool AddRequiredKeyValueTag(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, string pKey /*const char **/, string pValue /*const char **/)
 {
     return(platform.ISteamUGC_AddRequiredKeyValueTag(handle.Value, pKey, pValue));
 }
 // bool
 public bool SetReturnAdditionalPreviews(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, bool bReturnAdditionalPreviews /*bool*/)
 {
     return(platform.ISteamUGC_SetReturnAdditionalPreviews(handle.Value, bReturnAdditionalPreviews));
 }
 // bool
 public bool GetQueryUGCStatistic(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint index /*uint32*/, ItemStatistic eStatType /*EItemStatistic*/, out ulong pStatValue /*uint64 **/)
 {
     return(platform.ISteamUGC_GetQueryUGCStatistic(handle.Value, index, eStatType, out pStatValue));
 }
 // bool
 public bool SetReturnChildren(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, bool bReturnChildren /*bool*/)
 {
     return(platform.ISteamUGC_SetReturnChildren(handle.Value, bReturnChildren));
 }
 // bool
 public bool ReleaseQueryUGCRequest(UGCQueryHandle_t handle /*UGCQueryHandle_t*/)
 {
     return(platform.ISteamUGC_ReleaseQueryUGCRequest(handle.Value));
 }
 // bool
 public bool SetReturnMetadata(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, bool bReturnMetadata /*bool*/)
 {
     return(platform.ISteamUGC_SetReturnMetadata(handle.Value, bReturnMetadata));
 }
 // bool
 public bool SetAllowCachedResponse(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint unMaxAgeSeconds /*uint32*/)
 {
     return(platform.ISteamUGC_SetAllowCachedResponse(handle.Value, unMaxAgeSeconds));
 }
 // bool
 public bool SetReturnPlaytimeStats(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, uint unDays /*uint32*/)
 {
     return(platform.ISteamUGC_SetReturnPlaytimeStats(handle.Value, unDays));
 }
 // bool
 public bool SetCloudFileNameFilter(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, string pMatchCloudFileName /*const char **/)
 {
     return(platform.ISteamUGC_SetCloudFileNameFilter(handle.Value, pMatchCloudFileName));
 }
 // bool
 public bool SetSearchText(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, string pSearchText /*const char **/)
 {
     return(platform.ISteamUGC_SetSearchText(handle.Value, pSearchText));
 }
示例#23
0
 // bool
 public bool AddExcludedTag(UGCQueryHandle_t handle /*UGCQueryHandle_t*/, string pTagName /*const char **/)
 {
     return(platform.ISteamUGC_AddExcludedTag(handle.Value, Utility.GetUtf8Bytes(pTagName)));
 }