v1.0.0
Latest
2022.3+

Class MatchmakingResults

Represents the data that is stored by the Matchmaker service when the server is allocated

Inheritance
System.Object
MatchmakingResults
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
TypeNameDescription
MatchPropertiesmatchProperties

matchProperties param

System.StringgeneratorName

generatorName param

System.StringqueueName

Matchmaking queue that allocated the server.

System.StringpoolName

Matchmaking pool that allocated the server.

System.StringenvironmentId

Unity Gaming Services Project Environment ID.

System.StringbackfillTicketId

The unique ID of the backfill ticket.

System.StringmatchId

Unique ID of the match,

System.StringpoolId

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
TypeDescription
System.String

EnvironmentId

Unity Gaming Services Project Environment ID.

Declaration
public string EnvironmentId { get; }
Property Value
TypeDescription
System.String

GeneratorName

Parameter generatorName of MatchmakingResults

Declaration
public string GeneratorName { get; }
Property Value
TypeDescription
System.String

MatchId

Unique ID of the match,

Declaration
public string MatchId { get; }
Property Value
TypeDescription
System.String

MatchProperties

Parameter matchProperties of MatchmakingResults

Declaration
public MatchProperties MatchProperties { get; }
Property Value
TypeDescription
MatchProperties

PoolId

The ID of pool that the match is in.

Declaration
public string PoolId { get; }
Property Value
TypeDescription
System.String

PoolName

Matchmaking pool that allocated the server.

Declaration
public string PoolName { get; }
Property Value
TypeDescription
System.String

QueueName

Matchmaking queue that allocated the server.

Declaration
public string QueueName { get; }
Property Value
TypeDescription
System.String