C# Класс Castle.MonoRail.Framework.Views.Aspx.WebFormUtils

Pendent
Показать файл Открыть проект

Открытые методы

Метод Описание
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