Class DynamicProperty
DynamicProperty
Inheritance
System.Object
DynamicProperty
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Linq.Dynamic.Core
Assembly: System.Linq.Dynamic.Core.dll
Syntax
public class DynamicProperty
Constructors
| Improve this Doc View SourceDynamicProperty(String, Type)
Initializes a new instance of the DynamicProperty class.
Declaration
public DynamicProperty(string name, Type type)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name from the property. |
System.Type | type | The type from the property. |
Properties
| Improve this Doc View SourceName
Gets the name from the property.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The name from the property. |
Type
Gets the type from the property.
Declaration
public Type Type { get; }
Property Value
Type | Description |
---|---|
System.Type | The type from the property. |