docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class Player

    Information about a specific player creating, joining, or already in a lobby.

    Inheritance
    object
    Player
    Inherited Members
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: Unity.Services.Apis.Lobbies
    Assembly: solution.dll
    Syntax
    [Preserve]
    public class Player

    Constructors

    Player(string, PlayerProfile, string, Dictionary<string, PlayerDataObject>, string, DateTime, DateTime)

    Initializes a new instance of the Player class.

    Declaration
    [Preserve]
    public Player(string id = null, PlayerProfile profile = null, string connectionInfo = null, Dictionary<string, PlayerDataObject> data = null, string allocationId = null, DateTime joined = default, DateTime lastUpdated = default)
    Parameters
    Type Name Description
    string id

    The unique identifier for the player. If not provided for a create or join request, it will be set to the ID of the caller..

    PlayerProfile profile

    profile.

    string connectionInfo

    Connection information for connecting to a relay with this player..

    Dictionary<string, PlayerDataObject> data

    Custom game-specific properties that apply to an individual player (e.g. role or skill)..

    string allocationId

    The allocationId from the Relay service which associates this player in this lobby with a persistent connection. When a disconnect notification is received, this value is used to identify the associated player in a lobby to mark them as disconnected..

    DateTime joined

    The time at which the player joined the lobby..

    DateTime lastUpdated

    The last time the metadata for this player was updated..

    Properties

    AllocationId

    The allocationId from the Relay service which associates this player in this lobby with a persistent connection. When a disconnect notification is received, this value is used to identify the associated player in a lobby to mark them as disconnected.

    Declaration
    [Preserve]
    public string AllocationId { get; set; }
    Property Value
    Type Description
    string

    The allocationId from the Relay service which associates this player in this lobby with a persistent connection. When a disconnect notification is received, this value is used to identify the associated player in a lobby to mark them as disconnected.

    ConnectionInfo

    Connection information for connecting to a relay with this player.

    Declaration
    [Obsolete]
    [Preserve]
    public string ConnectionInfo { get; set; }
    Property Value
    Type Description
    string

    Connection information for connecting to a relay with this player.

    Data

    Custom game-specific properties that apply to an individual player (e.g. role or skill).

    Declaration
    [Preserve]
    public Dictionary<string, PlayerDataObject> Data { get; set; }
    Property Value
    Type Description
    Dictionary<string, PlayerDataObject>

    Custom game-specific properties that apply to an individual player (e.g. role or skill).

    Id

    The unique identifier for the player. If not provided for a create or join request, it will be set to the ID of the caller.

    Declaration
    [Preserve]
    public string Id { get; set; }
    Property Value
    Type Description
    string

    The unique identifier for the player. If not provided for a create or join request, it will be set to the ID of the caller.

    Joined

    The time at which the player joined the lobby.

    Declaration
    [Preserve]
    public DateTime Joined { get; set; }
    Property Value
    Type Description
    DateTime

    The time at which the player joined the lobby.

    LastUpdated

    The last time the metadata for this player was updated.

    Declaration
    [Preserve]
    public DateTime LastUpdated { get; set; }
    Property Value
    Type Description
    DateTime

    The last time the metadata for this player was updated.

    Profile

    Gets or Sets Profile

    Declaration
    [Preserve]
    public PlayerProfile Profile { get; set; }
    Property Value
    Type Description
    PlayerProfile
    In This Article
    Back to top
    Copyright © 2024 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)