Table of Contents

Class CreateAgentResult

Namespace
McServerLauncher.Services
Assembly
McServerLauncher.dll

Result of /v1/partner/create_agent: the per-user self-managed agent minted for the user from their setup code. AgentSecretKey is what the app stores (encrypted) and uses as the agent-key for all subsequent tunnel management.

public record CreateAgentResult : IEquatable<CreateAgentResult>
Inheritance
CreateAgentResult
Implements
Inherited Members

Constructors

CreateAgentResult(long, string, string, bool)

Result of /v1/partner/create_agent: the per-user self-managed agent minted for the user from their setup code. AgentSecretKey is what the app stores (encrypted) and uses as the agent-key for all subsequent tunnel management.

public CreateAgentResult(long AccountId, string AgentId, string AgentSecretKey, bool AgentOverLimit)

Parameters

AccountId long
AgentId string
AgentSecretKey string
AgentOverLimit bool

Properties

AccountId

public long AccountId { get; init; }

Property Value

long

AgentId

public string AgentId { get; init; }

Property Value

string

AgentOverLimit

public bool AgentOverLimit { get; init; }

Property Value

bool

AgentSecretKey

public string AgentSecretKey { get; init; }

Property Value

string