-
Notifications
You must be signed in to change notification settings - Fork 13
markdocmembersresolvedtypes IResType
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for resolved types
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Members.ResolvedTypes
MarkDoc.Members.ResolvedTypes.IResType[[IResType]]
class MarkDoc.Members.ResolvedTypes.IResType interfaceStyle;
end
| Type | Name | Methods |
|---|---|---|
string |
DisplayNameResolved type display name |
get |
string |
DocumentationNameResolved type name for documentation |
get |
bool |
IsByRefIs the type a reference |
get |
string |
RawNameResolved type raw name |
get |
Lazy<IType> |
ReferenceReference to known type |
get |
string |
TypeNamespaceResolved type namespace |
get |
Interface for resolved types
public abstract string DisplayName { get }Resolved type display name
public abstract string DocumentationName { get }Resolved type name for documentation
public abstract string RawName { get }Resolved type raw name
public abstract string TypeNamespace { get }Resolved type namespace
public abstract Lazy Reference { get }Reference to known type
public abstract bool IsByRef { get }Is the type a reference
Generated with MarkDoc