C# 클래스 Castle.MonoRail.Framework.Views.Aspx.WebFormUtils

Pendent
파일 보기 프로젝트 열기: nats/castle-1.0.3-mono

공개 메소드들

메소드 설명
FindControlRecursive ( Control rootControl, string controlId ) : Control

Finds the first control that matches the id, rescursively.

GetFieldOrProperty ( object target, string name ) : object

Gets the field or property of the specified target.

SetFieldOrProperty ( object target, string name, object value ) : void

Sets the field or property of the specified target.

메소드 상세

FindControlRecursive() 공개 정적인 메소드

Finds the first control that matches the id, rescursively.
public static FindControlRecursive ( Control rootControl, string controlId ) : Control
rootControl System.Web.UI.Control The root control.
controlId string The id of the control to search.
리턴 System.Web.UI.Control

GetFieldOrProperty() 공개 정적인 메소드

Gets the field or property of the specified target.
public static GetFieldOrProperty ( object target, string name ) : object
target object The target to act on.
name string The name of the field or property.
리턴 object

SetFieldOrProperty() 공개 정적인 메소드

Sets the field or property of the specified target.
public static SetFieldOrProperty ( object target, string name, object value ) : void
target object The target to act on.
name string The name of the field or property.
value object The value to set.
리턴 void