v1.2.1
Latest
2020.3+

Struct ChangedLobbyValue<T>

Contains whether or not a particular change has occurred, and if it has, the value of the change.

Namespace: Unity.Services.Lobbies
Syntax
public struct ChangedLobbyValue<T>
Type Parameters
NameDescription
T

The type of the value of the change.

Constructors

ChangedLobbyValue(T)

Creates a changed value.

Declaration
public ChangedLobbyValue(T value)
Parameters
TypeNameDescription
Tvalue

The new value provided by the change.

Properties

Added

True if the value is new, false otherwise. An Added value is necessarily a Changed value.

Declaration
public bool Added { get; }
Property Value
TypeDescription
Boolean

Changed

True if a change has occurred, false if there has been no change. Changed value may or may not be an added value

Declaration
public readonly bool Changed { get; }
Property Value
TypeDescription
Boolean

Value

The new value provided by the change.

Declaration
public readonly T Value { get; }
Property Value
TypeDescription
T