C# 클래스 LinFu.IoC.Configuration.PropertySetter

상속: IPropertySetter
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
Set ( object target, PropertyInfo targetProperty, object value ) : void

Sets the value of the targetProperty.

비공개 메소드들

메소드 설명
GenerateSetter ( PropertyInfo targetProperty ) : object>.Action

Generates an Action{T1, T2} delegate that will be used as the property setter for a particular type.

메소드 상세

Set() 공개 메소드

Sets the value of the targetProperty.
public Set ( object target, PropertyInfo targetProperty, object value ) : void
target object The target instance that contains the property to be modified.
targetProperty System.Reflection.PropertyInfo The property that will store the given value.
value object The value that will be assigned to the property.
리턴 void