Steamworks.SteamGameServerInventory.GetResultItems C# (CSharp) Méthode

GetResultItems() public static méthode

Copies the contents of a result set into a flat array. The specific

contents of the result set depend on which query which was used.

public static GetResultItems ( SteamInventoryResult_t resultHandle, SteamItemDetails_t pOutItemsArray, uint &punOutItemsArraySize ) : bool
resultHandle SteamInventoryResult_t
pOutItemsArray SteamItemDetails_t
punOutItemsArraySize uint
Résultat bool
		public static bool GetResultItems(SteamInventoryResult_t resultHandle, SteamItemDetails_t[] pOutItemsArray, ref uint punOutItemsArraySize) {
			InteropHelp.TestIfAvailableGameServer();
			return NativeMethods.ISteamGameServerInventory_GetResultItems(resultHandle, pOutItemsArray, ref punOutItemsArraySize);
		}