Class HelpTopicSummary
- Namespace
- Kuestenlogik.Bowire.Help
- Assembly
- Kuestenlogik.Bowire.dll
Lightweight projection of HelpTopic for list views. The body is omitted so a Topics call doesn't pull the whole markdown set into the browser when the user only wants to scan titles. The Summary rides along so the topic-tree nav can render a one-line excerpt under the short title.
public sealed record HelpTopicSummary : IEquatable<HelpTopicSummary>
- Inheritance
-
HelpTopicSummary
- Implements
- Inherited Members
Constructors
HelpTopicSummary(string, string, string?, string?)
Lightweight projection of HelpTopic for list views. The body is omitted so a Topics call doesn't pull the whole markdown set into the browser when the user only wants to scan titles. The Summary rides along so the topic-tree nav can render a one-line excerpt under the short title.
public HelpTopicSummary(string Id, string Title, string? Summary, string? CategoryId)
Parameters
Properties
CategoryId
public string? CategoryId { get; init; }
Property Value
Id
public string Id { get; init; }
Property Value
Summary
public string? Summary { get; init; }
Property Value
Title
public string Title { get; init; }
Property Value
Methods
Deconstruct(out string, out string, out string?, out string?)
public void Deconstruct(out string Id, out string Title, out string? Summary, out string? CategoryId)
Parameters
Equals(HelpTopicSummary?)
public bool Equals(HelpTopicSummary? other)
Parameters
otherHelpTopicSummary
Returns
Equals(object?)
public override bool Equals(object? obj)
Parameters
objobject
Returns
GetHashCode()
public override int GetHashCode()
Returns
ToString()
public override string ToString()
Returns
Operators
operator ==(HelpTopicSummary?, HelpTopicSummary?)
public static bool operator ==(HelpTopicSummary? left, HelpTopicSummary? right)
Parameters
leftHelpTopicSummaryrightHelpTopicSummary
Returns
operator !=(HelpTopicSummary?, HelpTopicSummary?)
public static bool operator !=(HelpTopicSummary? left, HelpTopicSummary? right)
Parameters
leftHelpTopicSummaryrightHelpTopicSummary