Interface IRuntimeFieldInfo
Interface for runtime field information.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
Namespace: Kephas.Runtime
Assembly: Kephas.Core.dll
Syntax
public interface IRuntimeFieldInfo : IFieldInfo, IValueElementInfo, IRuntimeElementInfo, IElementInfo, IExpando, IDynamicMetaObjectProvider, IIndexable, IAttributeProvider
Properties
| Improve this Doc View SourceFieldInfo
Gets the field information.
Declaration
FieldInfo FieldInfo { get; }
Property Value
Type | Description |
---|---|
System.Reflection.FieldInfo | The field information. |
IsStatic
Gets a value indicating whether this field is static.
Declaration
bool IsStatic { get; }
Property Value
Type | Description |
---|---|
System.Boolean | True if this field is static, false if not. |
ValueType
Gets the type of the field.
Declaration
IRuntimeTypeInfo ValueType { get; }
Property Value
Type | Description |
---|---|
IRuntimeTypeInfo | The type of the field. |