Class MemberInfo
- Namespace
- RustPlusApi.Data
- Assembly
- RustPlusApi.dll
Snapshot of a single team member's status.
public sealed record MemberInfo : IEquatable<MemberInfo>
- Inheritance
-
MemberInfo
- Implements
- Inherited Members
Properties
IsAlive
true if the member is currently alive.
public bool IsAlive { get; init; }
Property Value
IsOnline
true if the member is currently connected to the server.
public bool IsOnline { get; init; }
Property Value
LastDeathTime
UTC time of the member's last death.
public DateTime LastDeathTime { get; init; }
Property Value
LastSpawnTime
UTC time of the member's last spawn.
public DateTime LastSpawnTime { get; init; }
Property Value
Name
In-game display name of the member.
public string? Name { get; init; }
Property Value
SteamId
Steam64 ID of the member.
public ulong SteamId { get; init; }
Property Value
X
Horizontal map coordinate (west โ east).
public float X { get; init; }
Property Value
Y
Vertical map coordinate (south โ north).
public float Y { get; init; }