C# 클래스 ACR_ServerCommunicator.ServerLatencyMeasurer.PingState

Ping state communicated across the channel.
파일 보기 프로젝트 열기: ALandFarAway/ALFA-Base-Resources

공개 프로퍼티들

프로퍼티 타입 설명
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