Steamworks.SteamRemoteStorage.UpdatePublishedFileSetChangeDescription C# (CSharp) Méthode

UpdatePublishedFileSetChangeDescription() public static méthode

public static UpdatePublishedFileSetChangeDescription ( PublishedFileUpdateHandle_t updateHandle, string pchChangeDescription ) : bool
updateHandle PublishedFileUpdateHandle_t
pchChangeDescription string
Résultat bool
		public static bool UpdatePublishedFileSetChangeDescription(PublishedFileUpdateHandle_t updateHandle, string pchChangeDescription) {
			InteropHelp.TestIfAvailableClient();
			using (var pchChangeDescription2 = new InteropHelp.UTF8StringHandle(pchChangeDescription)) {
				return NativeMethods.ISteamRemoteStorage_UpdatePublishedFileSetChangeDescription(updateHandle, pchChangeDescription2);
			}
		}