Skip to content
DocsTry Aspire
DocsTry

DelveServerOptions Properties

ClassProperties6 members
Configures the headless Delve debug server used for remote debugging of a Go application.
Gets a value indicating whether Delve accepts multiple debugger clients. The default is false.
public bool AcceptMultiClient { get; init; }
Gets a value indicating whether Delve continues the application immediately after startup. The default is false.
public bool ContinueOnStart { get; init; }
Gets a value indicating whether Delve server logging is enabled. The default is false.
public bool Log { get; init; }
LogOutputSection titled LogOutputnullablestring?
Gets the Delve logging components enabled when DelveServerOptions.Log is true. When null or empty, Delve uses its default logging components.
public string? LogOutput { get; init; }
OnlySameUserSection titled OnlySameUsernullablebool?
Gets a value indicating whether Delve allows connections only from the same operating system user. When null, Delve's default same-user policy is used.
public bool? OnlySameUser { get; init; }
Gets the TCP port on which Delve listens. The default is 2345.
public int Port { get; init; }