Table of Contents

Struct PatchInfo

Namespace
FishMMO.Client
Assembly
FishMMO.Client.dll

Metadata describing the patch the server has for a given client version. Returned alongside the parsed latest VersionConfig from GetLatestVersion(string, string, Action<VersionConfig, PatchInfo>, Action<string>).

[Serializable]
public struct PatchInfo
Inherited Members

Fields

PatchAvailable

True when the server has an applicable patch for the supplied client version.

public bool PatchAvailable

Field Value

bool

Sha256

Lowercase hexadecimal SHA-256 of the patch zip the server will return for the supplied client version, or null/empty if no patch info was returned.

public string Sha256

Field Value

string

Size

Size in bytes of the patch zip the server will return for the supplied client version, or 0 if not provided.

public long Size

Field Value

long

UpToDate

True when the server indicated the client is already at the latest version (no patch needed).

public bool UpToDate

Field Value

bool