Interface IMemberInformation
Interface exposing information about a member.
Namespace:Extend
Assembly:Extend.dll
Syntax
public interface IMemberInformation
Properties
| Improve this Doc View SourceMemberName
Gets the name of the member.
Declaration
string MemberName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the member. |
MemberObject
Gets or sets a reference to the member.
Declaration
object MemberObject { get; }
Property Value
Type | Description |
---|---|
System.Object | A reference to the member. |
Remarks
Not always set.
MemberPath
Gets the member path of the member.
Declaration
string MemberPath { get; }
Property Value
Type | Description |
---|---|
System.String | The member path of the member. |
MemberType
Gets the type of the member.
Declaration
Type MemberType { get; }
Property Value
Type | Description |
---|---|
System.Type | The type of the member. |
PropertyInfo
Gets the property info representing the member.
Declaration
PropertyInfo PropertyInfo { get; }
Property Value
Type | Description |
---|---|
System.Reflection.PropertyInfo | The property info representing the member. |
Remarks
Not always set.