Steamworks.SteamMatchmakingServers.RequestInternetServerList C# (CSharp) Method

RequestInternetServerList() public static method

Request a new list of servers of a particular type. These calls each correspond to one of the EMatchMakingType values.

Each call allocates a new asynchronous request object.

Request object must be released by calling ReleaseRequest( hServerListRequest )

public static RequestInternetServerList ( AppId_t iApp, MatchMakingKeyValuePair_t ppchFilters, uint nFilters, ISteamMatchmakingServerListResponse pRequestServersResponse ) : HServerListRequest
iApp AppId_t
ppchFilters MatchMakingKeyValuePair_t
nFilters uint
pRequestServersResponse ISteamMatchmakingServerListResponse
return HServerListRequest
		public static HServerListRequest RequestInternetServerList(AppId_t iApp, MatchMakingKeyValuePair_t[] ppchFilters, uint nFilters, ISteamMatchmakingServerListResponse pRequestServersResponse) {
			InteropHelp.TestIfAvailableClient();
			return (HServerListRequest)NativeMethods.ISteamMatchmakingServers_RequestInternetServerList(iApp, new MMKVPMarshaller(ppchFilters), nFilters, (IntPtr)pRequestServersResponse);
		}