Steamworks.SteamRemoteStorage.UGCDownload C# (CSharp) Method

UGCDownload() public static method

user generated content

Downloads a UGC file. A priority value of 0 will download the file immediately,

otherwise it will wait to download the file until all downloads with a lower priority

value are completed. Downloads with equal priority will occur simultaneously.

public static UGCDownload ( UGCHandle_t hContent, uint unPriority ) : SteamAPICall_t
hContent UGCHandle_t
unPriority uint
return SteamAPICall_t
		public static SteamAPICall_t UGCDownload(UGCHandle_t hContent, uint unPriority) {
			InteropHelp.TestIfAvailableClient();
			return (SteamAPICall_t)NativeMethods.ISteamRemoteStorage_UGCDownload(hContent, unPriority);
		}