Interface ITypeInfo
- Namespace
- NominalSystems
- Assembly
- NominalSystems.Core.dll
Represents the metadata of an object with it's supported methods and properties.
public interface ITypeInfo
Properties
BaseType
The inherited base of this type (if any).
Type? BaseType { get; }
Property Value
Name
The fully qualified name of this type.
string Name { get; }
Property Value
Properties
The properties supported by this object (if any).
IPropertyInfo[] Properties { get; }
Property Value
Methods
GetProperty(string)
Returns a property in this object with the specified name.
IPropertyInfo? GetProperty(string name)
Parameters
name
stringThe name of the property.