CustomReflectionContext::CreateProperty Method (Type^, String^, Func<Object^, Object^>^, Action<Object^, Object^>^, IEnumerable<Attribute^>^, IEnumerable<Attribute^>^, IEnumerable<Attribute^>^)
Creates an object that represents a property to be added to a type, to be used with the AddProperties method and using the specified custom attributes.
Assembly: System.Reflection.Context (in System.Reflection.Context.dll)
protected:
PropertyInfo^ CreateProperty(
Type^ propertyType,
String^ name,
Func<Object^, Object^>^ getter,
Action<Object^, Object^>^ setter,
IEnumerable<Attribute^>^ propertyCustomAttributes,
IEnumerable<Attribute^>^ getterCustomAttributes,
IEnumerable<Attribute^>^ setterCustomAttributes
)
Parameters
- propertyType
-
Type:
System::Type^
The type of the property to create.
- name
-
Type:
System::String^
The name of the property to create.
- getter
-
Type:
System::Func<Object^, Object^>^
An object that represents the property's get accessor.
- setter
-
Type:
System::Action<Object^, Object^>^
An object that represents the property's set accessor.
- propertyCustomAttributes
-
Type:
System.Collections.Generic::IEnumerable<Attribute^>^
A collection of custom attributes to apply to the property.
- getterCustomAttributes
-
Type:
System.Collections.Generic::IEnumerable<Attribute^>^
A collection of custom attributes to apply to the property's get accessor.
- setterCustomAttributes
-
Type:
System.Collections.Generic::IEnumerable<Attribute^>^
A collection of custom attributes to apply to the property's set accessor.
Objects that are returned by this method are not complete PropertyInfo objects, and should be used only in the context of the AddProperties method.
Available since 8
.NET Framework
Available since 4.5
Portable Class Library
Supported in: portable .NET platforms