Steamworks.SteamRemoteStorage.FileFetch C# (CSharp) Method

FileFetch() public static method

Indicate this file should be downloaded in the next sync

public static FileFetch ( string pchFile ) : bool
pchFile string
return bool
		public static bool FileFetch(string pchFile) {
			InteropHelp.TestIfAvailableClient();
			using (var pchFile2 = new InteropHelp.UTF8StringHandle(pchFile)) {
				return NativeMethods.ISteamRemoteStorage_FileFetch(pchFile2);
			}
		}