Class QueryResponse
A list of lobbies that matched the specified query. Only the public top-level data and player data properties are returned.
Inherited Members
Namespace: Unity.Services.Lobbies.Models
Assembly: Unity.Services.Lobbies.dll
Syntax
[Preserve]
[DataContract(Name = "QueryResponse")]
public class QueryResponse
Constructors
QueryResponse(List<Lobby>, string)
A list of lobbies that matched the specified query. Only the public top-level data and player data properties are returned.
Declaration
[Preserve]
public QueryResponse(List<Lobby> results = null, string continuationToken = null)
Parameters
Type | Name | Description |
---|---|---|
List<Lobby> | results | results param |
string | continuationToken | continuationToken param |
Properties
ContinuationToken
Parameter continuationToken of QueryResponse
Declaration
[Preserve]
[DataMember(Name = "continuationToken", EmitDefaultValue = false)]
public string ContinuationToken { get; }
Property Value
Type | Description |
---|---|
string |
Results
Parameter results of QueryResponse
Declaration
[Preserve]
[DataMember(Name = "results", EmitDefaultValue = false)]
public List<Lobby> Results { get; }
Property Value
Type | Description |
---|---|
List<Lobby> |