Skip to content

FSharpApiMember

type FSharpApiMember =
    {
        Name: string
        Kind: FSharpApiMemberKind
        Signature: string
        ShortSignature: string
        Parameters: FSharpApiParameter list
        ReturnType: string option
        IsStatic: bool
        Extends: string option
        Doc: FSharpApiDoc
        Anchor: string
    }
AssemblyNacara.Plugin.FSharpApi

One member of a type or module.

Fields

Name: string
Signature: string

The declaration as a reader would write it.

ShortSignature: string

A one-line form for the index at the top of a page.

Parameters: FSharpApiParameter list
ReturnType: string option
IsStatic: bool
Extends: string option

The type this extends, when the library added it to one it does not own.

Anchor: string