다음을 통해 공유


CustomReflectionContext.CreateProperty 메서드

정의

AddProperties(Type) 메서드가 지정하는 대로 형식에 추가될 속성을 나타내는 개체를 만듭니다.

오버로드

CreateProperty(Type, String, Func<Object,Object>, Action<Object,Object>)

AddProperties(Type) 메서드와 함께 사용할 형식에 추가될 속성을 나타내는 개체를 만듭니다.

CreateProperty(Type, String, Func<Object,Object>, Action<Object,Object>, IEnumerable<Attribute>, IEnumerable<Attribute>, IEnumerable<Attribute>)

지정된 사용자 지정 특성을 사용하여 AddProperties(Type) 메서드와 함께 사용할 형식에 추가될 속성을 나타내는 개체를 만듭니다.

CreateProperty(Type, String, Func<Object,Object>, Action<Object,Object>)

Source:
CustomReflectionContext.cs
Source:
CustomReflectionContext.cs
Source:
CustomReflectionContext.cs
Source:
CustomReflectionContext.cs

AddProperties(Type) 메서드와 함께 사용할 형식에 추가될 속성을 나타내는 개체를 만듭니다.

protected:
 System::Reflection::PropertyInfo ^ CreateProperty(Type ^ propertyType, System::String ^ name, Func<System::Object ^, System::Object ^> ^ getter, Action<System::Object ^, System::Object ^> ^ setter);
protected System.Reflection.PropertyInfo CreateProperty (Type propertyType, string name, Func<object,object> getter, Action<object,object> setter);
protected System.Reflection.PropertyInfo CreateProperty (Type propertyType, string name, Func<object,object?>? getter, Action<object,object?>? setter);
member this.CreateProperty : Type * string * Func<obj, obj> * Action<obj, obj> -> System.Reflection.PropertyInfo
Protected Function CreateProperty (propertyType As Type, name As String, getter As Func(Of Object, Object), setter As Action(Of Object, Object)) As PropertyInfo

매개 변수

propertyType
Type

만들 속성의 형식입니다.

name
String

만들 속성의 이름입니다.

getter
Func<Object,Object>

속성의 get 접근자를 나타내는 개체입니다.

setter
Action<Object,Object>

속성의 set 접근자를 나타내는 개체입니다.

반환

속성을 나타내는 개체입니다.

설명

이 메서드에서 반환 되는 개체에 완료 되지 PropertyInfo 개체의 경우에만 사용 해야 합니다는 AddProperties 메서드.

적용 대상

CreateProperty(Type, String, Func<Object,Object>, Action<Object,Object>, IEnumerable<Attribute>, IEnumerable<Attribute>, IEnumerable<Attribute>)

Source:
CustomReflectionContext.cs
Source:
CustomReflectionContext.cs
Source:
CustomReflectionContext.cs
Source:
CustomReflectionContext.cs

지정된 사용자 지정 특성을 사용하여 AddProperties(Type) 메서드와 함께 사용할 형식에 추가될 속성을 나타내는 개체를 만듭니다.

protected:
 System::Reflection::PropertyInfo ^ CreateProperty(Type ^ propertyType, System::String ^ name, Func<System::Object ^, System::Object ^> ^ getter, Action<System::Object ^, System::Object ^> ^ setter, System::Collections::Generic::IEnumerable<Attribute ^> ^ propertyCustomAttributes, System::Collections::Generic::IEnumerable<Attribute ^> ^ getterCustomAttributes, System::Collections::Generic::IEnumerable<Attribute ^> ^ setterCustomAttributes);
protected System.Reflection.PropertyInfo CreateProperty (Type propertyType, string name, Func<object,object> getter, Action<object,object> setter, System.Collections.Generic.IEnumerable<Attribute> propertyCustomAttributes, System.Collections.Generic.IEnumerable<Attribute> getterCustomAttributes, System.Collections.Generic.IEnumerable<Attribute> setterCustomAttributes);
protected System.Reflection.PropertyInfo CreateProperty (Type propertyType, string name, Func<object,object?>? getter, Action<object,object?>? setter, System.Collections.Generic.IEnumerable<Attribute>? propertyCustomAttributes, System.Collections.Generic.IEnumerable<Attribute>? getterCustomAttributes, System.Collections.Generic.IEnumerable<Attribute>? setterCustomAttributes);
member this.CreateProperty : Type * string * Func<obj, obj> * Action<obj, obj> * seq<Attribute> * seq<Attribute> * seq<Attribute> -> System.Reflection.PropertyInfo
Protected Function CreateProperty (propertyType As Type, name As String, getter As Func(Of Object, Object), setter As Action(Of Object, Object), propertyCustomAttributes As IEnumerable(Of Attribute), getterCustomAttributes As IEnumerable(Of Attribute), setterCustomAttributes As IEnumerable(Of Attribute)) As PropertyInfo

매개 변수

propertyType
Type

만들 속성의 형식입니다.

name
String

만들 속성의 이름입니다.

getter
Func<Object,Object>

속성의 get 접근자를 나타내는 개체입니다.

setter
Action<Object,Object>

속성의 set 접근자를 나타내는 개체입니다.

propertyCustomAttributes
IEnumerable<Attribute>

속성에 적용할 사용자 지정 특성의 컬렉션입니다.

getterCustomAttributes
IEnumerable<Attribute>

속성의 get 접근자에 적용할 사용자 지정 특성의 컬렉션입니다.

setterCustomAttributes
IEnumerable<Attribute>

속성의 set 접근자에 적용할 사용자 지정 특성의 컬렉션입니다.

반환

속성을 나타내는 개체입니다.

설명

이 메서드에서 반환 되는 개체에 완료 되지 PropertyInfo 개체의 경우에만 사용 해야 합니다는 AddProperties 메서드.

적용 대상