Table of Contents

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

bool

IsOnline

true if the member is currently connected to the server.

public bool IsOnline { get; init; }

Property Value

bool

LastDeathTime

UTC time of the member's last death.

public DateTime LastDeathTime { get; init; }

Property Value

DateTime

LastSpawnTime

UTC time of the member's last spawn.

public DateTime LastSpawnTime { get; init; }

Property Value

DateTime

Name

In-game display name of the member.

public string? Name { get; init; }

Property Value

string

SteamId

Steam64 ID of the member.

public ulong SteamId { get; init; }

Property Value

ulong

X

Horizontal map coordinate (west โ†’ east).

public float X { get; init; }

Property Value

float

Y

Vertical map coordinate (south โ†’ north).

public float Y { get; init; }

Property Value

float