Class LobbyValue
Helper class for instantiating ChangedLobbyValue and ChangedOrRemovedLobbyValue!
Inherited Members
Namespace: Unity.Services.Lobbies
Assembly: Unity.Services.Multiplayer.dll
Syntax
public static class LobbyValueMethods
Added<T>(T)
Provides an added lobby value.
Declaration
public static ChangedLobbyValue<T> Added<T>(T value)Parameters
| Type | Name | Description | 
|---|---|---|
| T | value | The new value. | 
Returns
| Type | Description | 
|---|---|
| ChangedLobbyValue<T> | An added lobby value. | 
Type Parameters
| Name | Description | 
|---|---|
| T | The type of the value to add. | 
ChangeAdded<T>(T)
Instantiates an added lobby value.
Declaration
public static ChangedOrRemovedLobbyValue<T> ChangeAdded<T>(T value)Parameters
| Type | Name | Description | 
|---|---|---|
| T | value | The value of the addition. | 
Returns
| Type | Description | 
|---|---|
| ChangedOrRemovedLobbyValue<T> | An added lobby value. | 
Type Parameters
| Name | Description | 
|---|---|
| T | The type of the value to add. | 
ChangedNotRemoved<T>(T)
Instantiates a changed lobby value.
Declaration
public static ChangedOrRemovedLobbyValue<T> ChangedNotRemoved<T>(T value)Parameters
| Type | Name | Description | 
|---|---|---|
| T | value | The new value it has changed to. | 
Returns
| Type | Description | 
|---|---|
| ChangedOrRemovedLobbyValue<T> | A changed lobby value. | 
Type Parameters
| Name | Description | 
|---|---|
| T | The type of the value to change. | 
Changed<T>(T)
Instantiates a changed lobby value.
Declaration
public static ChangedLobbyValue<T> Changed<T>(T value)Parameters
| Type | Name | Description | 
|---|---|---|
| T | value | The new value it has changed to. | 
Returns
| Type | Description | 
|---|---|
| ChangedLobbyValue<T> | A changed lobby value. | 
Type Parameters
| Name | Description | 
|---|---|
| T | The type of the value to change. | 
Removed<T>()
Provides a removed lobby value.
Declaration
public static ChangedOrRemovedLobbyValue<T> Removed<T>()Returns
| Type | Description | 
|---|---|
| ChangedOrRemovedLobbyValue<T> | A removed lobby value. | 
Type Parameters
| Name | Description | 
|---|---|
| T | The type of the value to remove. |