MemberDocLinker Delegate

Namespace
Kampute.DocToolkit.Languages
Assembly
  • Kampute.DocToolkit.dll

Definition

Represents a delegate for linking to the documentation of a type or type's member.
public delegate void MemberDocLinker(TextWriter textWriter, IMember member, string memberName)

Parameters

textWriter TextWriter
The TextWriter to which the link is written.
member IMember
The member to link to.
memberName string
The member's name to display in the link.

Remarks

The MemberDocLinker delegate is used to write links to the documentation of specified types or members. This delegate is typically used in conjunction with methods that format and write code elements.

By using this delegate, developers can ensure that links to documentation are consistently formatted and integrated within the generated output.

See Also