Skip to content

ReplDocResource

Resource metadata for commands marked as data sources.

public sealed record ReplDocResource : IEquatable<ReplDocResource>
  • IEquatable<ReplDocResource>

ReplDocResource(string, string?, string?, IReadOnlyList<ReplDocArgument>, IReadOnlyList<ReplDocOption>)

Section titled “ReplDocResource(string, string?, string?, IReadOnlyList<ReplDocArgument>, IReadOnlyList<ReplDocOption>)”

Resource metadata for commands marked as data sources.

public ReplDocResource(string Path, string? Description, string? Details, IReadOnlyList<ReplDocArgument> Arguments, IReadOnlyList<ReplDocOption> Options)
  • Path (string)
  • Description (string)
  • Details (string)
  • Arguments (IReadOnlyList<ReplDocArgument>)
  • Options (IReadOnlyList<ReplDocOption>)
public IReadOnlyList<ReplDocArgument> Arguments { get; init; }

IReadOnlyList<ReplDocArgument>

public string? Description { get; init; }

string

public string? Details { get; init; }

string

public IReadOnlyList<ReplDocOption> Options { get; init; }

IReadOnlyList<ReplDocOption>

public string Path { get; init; }

string