-
Notifications
You must be signed in to change notification settings - Fork 13
markdocmemberstypes IType
Denis Akopyan edited this page Mar 7, 2022
·
1 revision
Interface for types
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Members.Types
MarkDoc.Members.Types.IType[[IType]]
class MarkDoc.Members.Types.IType interfaceStyle;
end
| Type | Name | Methods |
|---|---|---|
AccessorType |
AccessorType accessor |
get |
bool |
IsNestedDetermines whether this type is nested |
get |
string |
NameType name |
get |
string |
RawNameReflection fullname with namespace |
get |
string |
TypeNamespaceType namespace |
get |
Interface for types
public abstract string RawName { get }Reflection fullname with namespace
public abstract string Name { get }Type name
public abstract string TypeNamespace { get }Type namespace
public abstract bool IsNested { get }Determines whether this type is nested
public abstract AccessorType Accessor { get }Type accessor
Generated with MarkDoc