Class MatchmakingResults
Represents the data that is stored by the Matchmaker service when the server is allocated
Inheritance
Inherited Members
Namespace: Unity.Services.Matchmaker.Models
Syntax
public class MatchmakingResults
Constructors
MatchmakingResults(MatchProperties, String, String, String, String, String, String, String)
Represents the data that is stored by the Matchmaker service when the server is allocated
Declaration
public MatchmakingResults(MatchProperties matchProperties = null, string generatorName = null, string queueName = null, string poolName = null, string environmentId = null, string backfillTicketId = null, string matchId = null, string poolId = null)
Parameters
Type | Name | Description |
---|---|---|
MatchProperties | matchProperties | matchProperties param |
System.String | generatorName | generatorName param |
System.String | queueName | Matchmaking queue that allocated the server. |
System.String | poolName | Matchmaking pool that allocated the server. |
System.String | environmentId | Unity Gaming Services Project Environment ID. |
System.String | backfillTicketId | The unique ID of the backfill ticket. |
System.String | matchId | Unique ID of the match, |
System.String | poolId | The ID of pool that the match is in. |
Properties
BackfillTicketId
The unique ID of the backfill ticket.
Declaration
public string BackfillTicketId { get; }
Property Value
Type | Description |
---|---|
System.String |
EnvironmentId
Unity Gaming Services Project Environment ID.
Declaration
public string EnvironmentId { get; }
Property Value
Type | Description |
---|---|
System.String |
GeneratorName
Parameter generatorName of MatchmakingResults
Declaration
public string GeneratorName { get; }
Property Value
Type | Description |
---|---|
System.String |
MatchId
Unique ID of the match,
Declaration
public string MatchId { get; }
Property Value
Type | Description |
---|---|
System.String |
MatchProperties
Parameter matchProperties of MatchmakingResults
Declaration
public MatchProperties MatchProperties { get; }
Property Value
Type | Description |
---|---|
MatchProperties |
PoolId
The ID of pool that the match is in.
Declaration
public string PoolId { get; }
Property Value
Type | Description |
---|---|
System.String |
PoolName
Matchmaking pool that allocated the server.
Declaration
public string PoolName { get; }
Property Value
Type | Description |
---|---|
System.String |
QueueName
Matchmaking queue that allocated the server.
Declaration
public string QueueName { get; }
Property Value
Type | Description |
---|---|
System.String |