C# Класс ACR_ServerCommunicator.ServerLatencyMeasurer.PingState

Ping state communicated across the channel.
Показать файл Открыть проект

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

Свойство Тип Описание
PCObjectId uint
TickCount int

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

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

Deserialize the state from a string.

PingState ( uint PCObjectId, int TickCount ) : System

Construct a new PingState object.

ToString ( ) : string

Convert the state to a string.

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

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

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

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

Construct a new PingState object.
public PingState ( uint PCObjectId, int TickCount ) : System
PCObjectId uint Supplies the player id.
TickCount int Supplies the tick count.
Результат System

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

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

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

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

The PC object ID of the requesting player.
public uint PCObjectId
Результат uint

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

The tick count snapped at the start of the ping request.
public int TickCount
Результат int