TypeDelegator.GetPropertyImpl 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 재정의되면, 지정된 인수 형식 및 한정자와 일치하는 매개 변수를 가진 지정된 속성을 지정된 바인딩 제약 조건으로 검색합니다.
protected:
override System::Reflection::PropertyInfo ^ GetPropertyImpl(System::String ^ name, System::Reflection::BindingFlags bindingAttr, System::Reflection::Binder ^ binder, Type ^ returnType, cli::array <Type ^> ^ types, cli::array <System::Reflection::ParameterModifier> ^ modifiers);
protected override System.Reflection.PropertyInfo? GetPropertyImpl (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder? binder, Type? returnType, Type[]? types, System.Reflection.ParameterModifier[]? modifiers);
protected override System.Reflection.PropertyInfo GetPropertyImpl (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, Type returnType, Type[] types, System.Reflection.ParameterModifier[] modifiers);
override this.GetPropertyImpl : string * System.Reflection.BindingFlags * System.Reflection.Binder * Type * Type[] * System.Reflection.ParameterModifier[] -> System.Reflection.PropertyInfo
Protected Overrides Function GetPropertyImpl (name As String, bindingAttr As BindingFlags, binder As Binder, returnType As Type, types As Type(), modifiers As ParameterModifier()) As PropertyInfo
매개 변수
- name
- String
가져올 속성입니다.
- bindingAttr
- BindingFlags
검색 수행 방법에 영향을 주는 비트 마스크입니다. 이 값은 0이나 BindingFlags의 여러 비트 플래그의 조합으로 구성됩니다.
- binder
- Binder
리플렉션을 사용하여 바인딩, 인수 형식의 강제 변환, 멤버 호출 및 MemberInfo
개체 검색을 사용할 수 있도록 하는 개체입니다. binder
가 null
이면 기본 바인더가 사용됩니다. Binder을 참조하세요.
- returnType
- Type
속성의 반환 형식입니다.
- types
- Type[]
매개 변수 형식 목록입니다. 이 목록은 매개 변수의 개수, 순서, 형식을 나타냅니다. 형식은 Null이 될 수 없습니다. 적당한 GetMethod
메서드나 빈 배열을 사용하여 매개 변수 없이 메서드를 검색합니다.
- modifiers
- ParameterModifier[]
가져올 메서드의 매개 변수에 연관된 특성을 나타내는 요소가 있는 형식과 길이가 같은 배열입니다.
반환
지정한 조건을 만족하는 속성에 대한 PropertyInfo 개체 또는 만족하는 조건이 없는 경우 Null입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET