Steamworks.SteamGameServerUGC.SetItemTitle C# (CSharp) Method

SetItemTitle() public static method

change the title of an UGC item

public static SetItemTitle ( UGCUpdateHandle_t handle, string pchTitle ) : bool
handle UGCUpdateHandle_t
pchTitle string
return bool
		public static bool SetItemTitle(UGCUpdateHandle_t handle, string pchTitle) {
			InteropHelp.TestIfAvailableGameServer();
			using (var pchTitle2 = new InteropHelp.UTF8StringHandle(pchTitle)) {
				return NativeMethods.ISteamGameServerUGC_SetItemTitle(handle, pchTitle2);
			}
		}