v1.2.1
Latest
2020.3+

Class QuickJoinRequest

The body of a QuickJoin request.

Inheritance
QuickJoinRequest
Namespace: Unity.Services.Lobbies.Models
Syntax
[Preserve]
public class QuickJoinRequest

Constructors

QuickJoinRequest(List<QueryFilter>, Player)

The body of a QuickJoin request.

Declaration
[Preserve]
public QuickJoinRequest(List<QueryFilter> filter = null, Player player = null)
Parameters
TypeNameDescription
List<QueryFilter>filter

A list of filters which can be used to narrow down which lobbies to attempt to join.

Playerplayer

player param

Properties

Filter

A list of filters which can be used to narrow down which lobbies to attempt to join.

Declaration
[Preserve]
public List<QueryFilter> Filter { get; }
Property Value
TypeDescription
List<QueryFilter>

Player

Parameter player of QuickJoinRequest

Declaration
[Preserve]
public Player Player { get; }
Property Value
TypeDescription
Player