PhotonMessageInfo.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
    public override string ToString()
    {
        return string.Format("[PhotonMessageInfo: Sender='{1}' Senttime={0}]", this.timestamp, this.sender);
    }
}

Usage Example

 private void OnPhotonInstantiate(PhotonMessageInfo info)
 {
     Debug.Log(info.ToString());
 }
All Usage Examples Of PhotonMessageInfo::ToString