public record DocMethod : DocMember
A DocMember
that represents a documented method in the parsed source code.
public required DocTypeParam[] TypeParams { get; init; }
The type parameters of the method.
public required DocParam[] Params { get; init; }
The parameters of the method.
public required bool Delegate { get; init; }
Whether this method represents a delegate.
public string Signature { get; }
The full signature of the method that includes both type parameters and regular parameters
(e.g., "Method<T1, T2>(int, short)"
).
public string FullyQualifiedSignature { get; }
The full signature of the method that includes both type parameters and regular parameters
(e.g., "Method<T1, T2>(int, short)"
).