C# Класс ACR_ServerCommunicator.GUIResynchronizer.ResyncState

Resync state for a player.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
PlayerId int
ResyncFlags uint

Открытые методы

Метод Описание
FromString ( string ResyncCommand ) : ResyncState

Deserialize the resynchronization state from a string.

ResyncState ( int PlayerId, uint ResyncFlags ) : System

Construct a new ResyncState object.

ToString ( ) : string

Convert the resynchronization state to a string.

Описание методов

FromString() публичный статический Метод

Deserialize the resynchronization state from a string.
public static FromString ( string ResyncCommand ) : ResyncState
ResyncCommand string Supplies the state string that was /// constructed by a call to ToString().
Результат ResyncState

ResyncState() публичный Метод

Construct a new ResyncState object.
public ResyncState ( int PlayerId, uint ResyncFlags ) : System
PlayerId int Supplies the player id.
ResyncFlags uint Supplies the resync flags.
Результат System

ToString() публичный Метод

Convert the resynchronization state to a string.
public ToString ( ) : string
Результат string

Описание свойств

PlayerId публичное свойство

The player id of the player.
public int PlayerId
Результат int

ResyncFlags публичное свойство

The resync flags for the request.
public uint ResyncFlags
Результат uint