Class MemberInformation
Class containing information about a member.
Inheritance
System.Object
MemberInformation
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace:Extend
Assembly:Extend.dll
Syntax
public class MemberInformation : IMemberInformation
Properties
| Improve this Doc View SourceMemberName
Gets the name of the member.
Declaration
public string MemberName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the member. |
Implements
| Improve this Doc View SourceMemberObject
Gets or sets a reference to the member.
Declaration
public object MemberObject { get; set; }
Property Value
Type | Description |
---|---|
System.Object | A reference to the member. |
Implements
Remarks
Can be null.
MemberPath
Gets the member path of the member.
Declaration
public string MemberPath { get; set; }
Property Value
Type | Description |
---|---|
System.String | The member path of the member. |
Implements
| Improve this Doc View SourceMemberType
Gets the type of the member.
Declaration
public Type MemberType { get; set; }
Property Value
Type | Description |
---|---|
System.Type | The type of the member. |
Implements
| Improve this Doc View SourcePropertyInfo
Gets the property info representing the member.
Declaration
public PropertyInfo PropertyInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.PropertyInfo | The property info representing the member. |
Implements
Remarks
Not always set.
Methods
| Improve this Doc View SourceToString()
Creates and returns a string representation of the current exception.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A string representation of the current exception. |
Overrides
System.Object.ToString()