Свойство | Тип | Описание | |
---|---|---|---|
FieldFlags | BindingFlags | ||
PropertyFlags | BindingFlags | ||
PropertyFlags2 | BindingFlags | ||
logger | ILogger |
Свойство | Тип | Описание | |
---|---|---|---|
AddChecked | void | ||
ApplyFilterOptions | void | ||
ApplyNumberOnlyOptions | void | ||
AreEqual | bool | ||
AssertIsValidArray | void | ||
CheckForExistenceAndExtractIndex | bool | ||
CheckboxItem | string | ||
CollectValidators | IValidator[] | ||
CreateHtmlId | string | ||
GetArrayElement | object | ||
ObtainRootType | |||
QueryPropertyInfoRecursive | |||
RemoveChecked | void | ||
ResolveFlagsToUse | BindingFlags | ||
SafeHtmlEncode | string |
Метод | Описание | |
---|---|---|
AjaxFormTag ( IDictionary parameters ) : string |
Generate Ajax form tag for ajax based form submission. Experimental.
|
|
Button ( string value ) : string |
Generates an input button element.
|
|
Button ( string value, IDictionary attributes ) : string |
Generates an input button element.
|
|
ButtonElement ( string innerText ) : string |
Creates a basic button element of type submit.
|
|
ButtonElement ( string innerText, string type ) : string |
Creates a basic button element of the specified type.
|
|
ButtonElement ( string innerText, string type, IDictionary attributes ) : string |
Creates a basic button element of the specified type and with specified attributes.
|
|
CheckboxField ( string target ) : string |
Generates a checkbox field. In fact it generates two as a way to send a value if the primary checkbox is not checked. This allow the process the be aware of the unchecked value and act accordingly.
|
|
CheckboxField ( string target, IDictionary attributes ) : string |
Generates a checkbox field. In fact it generates two as a way to send a value if the primary checkbox is not checked. This allow the process the be aware of the unchecked value and act accordingly. The checked and unchecked values sent to the server defaults to true and false. You can override them using the parameters
|
|
CreateCheckboxList ( string target, IEnumerable dataSource ) : CheckboxList |
Creates a CheckboxList instance which is enumerable. For each interaction you can invoke CheckboxList.Item() which will correctly render a checkbox input element for the current element on the supplied set ( The enumerable item will be an element of the dataSource elements are complex objects (ie not string or primitives), supply the parameters value and text to the dictionary to make the helper use the specified properties to extract the option value and content respectively. Usually both the
|
|
CreateCheckboxList ( string target, IEnumerable dataSource, IDictionary attributes ) : CheckboxList |
Creates a CheckboxList instance which is enumerable. For each interaction you can invoke CheckboxList.Item() which will correctly render a checkbox input element for the current element on the supplied set ( The enumerable item will be an element of the dataSource elements are complex objects (ie not string or primitives), supply the parameters value and text to the dictionary to make the helper use the specified properties to extract the option value and content respectively. Usually both the
|
|
DisableValidation ( ) : void |
Disables the validation.
|
|
EndFormTag ( ) : string |
Renders an end form element. Should be used if you are using form validation. Some validation approaches uses the end form before or after appending a javascript snippet. |
|
EnumToPairs ( |
Creates a list of pairs for the enum type.
|
|
FileField ( string target ) : string |
Generates an input file element. Dirrently than other operations exposed by this helper, no value is extracted for this operation
|
|
FileField ( string target, IDictionary attributes ) : string |
Generates an input file element. Dirrently than other operations exposed by this helper, no value is extracted for this operation
|
|
FilteredTextField ( string target, IDictionary attributes ) : string |
Generates an input text element with a javascript that prevents the chars listed in the forbid attribute from being entered. You must invoke FormHelper.InstallScripts before using it. |
|
FormTag ( IDictionary parameters ) : string |
Creates a form tag based on the parameters. Javascript validation can also be bound to the form and|or elements nested as long as the helper is able to reach the Type of the object used on your view code The action attribute generation will use UrlHelper The parameters are used to build a url and also to form the tag. For notes on the url see DefaultUrlBuilder.BuildUrl(UrlInfo,IDictionary). The other parameters supported follows |
|
FormTag ( string url, IDictionary parameters ) : string |
Creates a form tag based on the parameters. Javascript validation can also be bound to the form and|or elements nested as long as the helper is able to reach the Type of the object used on your view code The action attribute generation will use UrlHelper The following parameters are accepted. |
|
HiddenField ( string target ) : string |
Generates a hidden form element. The value is extracted from the target (if available)
|
|
HiddenField ( string target, IDictionary attributes ) : string |
Generates a hidden form element. The value is extracted from the target (if available)
|
|
HiddenField ( string target, object value ) : string |
Generates a hidden form element with the specified value
|
|
HiddenField ( string target, object value, IDictionary attributes ) : string |
Generates a hidden form element with the specified value
|
|
InstallScripts ( ) : string |
Renders a Javascript library inside a single script tag.
|
|
LabelFor ( string target, string label ) : string |
Generates a label element.
|
|
LabelFor ( string target, string label, IDictionary attributes ) : string |
Generates a label element.
|
|
NumberField ( string target ) : string |
Generates an input text element with a javascript that prevents chars other than numbers from being entered. The value is extracted from the target (if available) You must include the formhelper javascript functions to use the NumberField. See InstallScripts |
|
NumberField ( string target, IDictionary attributes ) : string |
Generates an input text element with a javascript that prevents chars other than numbers from being entered. The value is extracted from the target (if available) You must include the formhelper javascript functions to use the NumberField. See InstallScripts You can optionally pass an FormHelper.NumberField("product.price", {exceptions='13,10,11'}) In this case the key codes 13, 10 and 11 will be accepted on the field. You can aslo optionally pass an FormHelper.NumberField("product.price", {forbid='46'}) In this case the key code 46 (period) will not be accepted on the field. |
|
NumberFieldValue ( string target, object value ) : string |
Generates an input text element with a javascript that prevents chars other than numbers from being entered. The value is not gathered from the context, instead you specify it on the second argument You must include the formhelper javascript functions to use the NumberField. See InstallScripts |
|
NumberFieldValue ( string target, object value, IDictionary attributes ) : string |
Generates an input text element with a javascript that prevents chars other than numbers from being entered. The value is not gathered from the context, instead you specify it on the second argument You must include the formhelper javascript functions to use the NumberField. See InstallScripts |
|
PasswordField ( string target ) : string |
Generates a password input field.
|
|
PasswordField ( string target, IDictionary attributes ) : string |
Generates a password input field.
|
|
PasswordNumberField ( string target ) : string |
Generates an input password element with a javascript that prevents chars other than numbers from being entered. The value is extracted from the target (if available) You must invoke FormHelper.InstallScripts before using it |
|
PasswordNumberField ( string target, IDictionary attributes ) : string |
Generates an input password element with a javascript that prevents chars other than numbers from being entered. The value is extracted from the target (if available) You can optionally pass an FormHelper.NumberField("product.price", {exceptions='13,10,11'}) In this case the key codes 13, 10 and 11 will be accepted on the field. You can aslo optionally pass an FormHelper.NumberField("product.price", {forbid='46'}) In this case the key code 46 (period) will not be accepted on the field.You must invoke FormHelper.InstallScripts before using it |
|
Pop ( ) : void |
Pops this instance. Experimental.
|
|
Push ( string target ) : void |
Pushes the specified target. Experimental.
|
|
Push ( string target, IDictionary parameters ) : void |
Pushes the specified target. Experimental.
|
|
RadioField ( string target, object valueToSend ) : string |
Generates a radio input type with the specified value to send to the served in case the element in checked. It will automatically check the radio if the target evaluated value is equal to the specified
|
|
RadioField ( string target, object valueToSend, IDictionary attributes ) : string |
Generates a radio input type with the specified value to send to the served in case the element in checked. It will automatically check the radio if the target evaluated value is equal to the specified
|
|
Select ( string target, IEnumerable dataSource ) : string |
Creates a You can also specify the attribute Usually the The target can also be a set. In this case the intersection will be the initially selected elements.
|
|
Select ( string target, IEnumerable dataSource, IDictionary attributes ) : string |
Creates a You can also specify the attribute Usually the The target can also be a set. In this case the intersection will be the initially selected elements.
|
|
Select ( string target, object selectedValue, IEnumerable dataSource, IDictionary attributes ) : string |
Creates a You can also specify the attribute Usually the The target can also be a set. In this case the intersection will be the initially selected elements.
|
|
Service ( IServiceProvider provider ) : void |
Invoked by the framework in order to give a chance to obtain other services
|
|
Submit ( string value ) : string |
Generates an input submit element.
|
|
Submit ( string value, IDictionary attributes ) : string |
Generates an input submit element.
|
|
TextArea ( string target ) : string |
Generates a textarea element. The value is extracted from the target (if available)
|
|
TextArea ( string target, IDictionary attributes ) : string |
Generates a textarea element. The value is extracted from the target (if available)
|
|
TextAreaValue ( string target, object value, IDictionary attributes ) : string |
Generates a textarea element with a specified value.
|
|
TextField ( string target ) : string |
Generates an input text element. The value is extracted from the target (if available)
|
|
TextField ( string target, IDictionary attributes ) : string |
Generates an input text element. The value is extracted from the target (if available)
|
|
TextFieldValue ( string target, object value ) : string |
Generates an input text form element with the supplied value
|
|
TextFieldValue ( string target, object value, IDictionary attributes ) : string |
Generates an input text form element with the supplied value
|
|
UsePrototypeValidation ( ) : void |
Configures this FormHelper instance to use Prototype for form fields validation
|
|
UseWebValidatorProvider ( IBrowserValidatorProvider provider ) : void |
Configures this FormHelper instance to use the supplied web validator to generate field validation.
|
|
UseZebdaValidation ( ) : void |
Configures this FormHelper instance to use Zebda for form fields validation
|
|
UsefValidate ( ) : void |
Configures this FormHelper instance to use fValidate for form fields validation
|
Метод | Описание | |
---|---|---|
ApplyValidation ( InputElementType inputType, string target, IDictionary &attributes ) : void |
Applies the validation.
|
|
CreateHtmlId ( IDictionary attributes, string target ) : string |
Creates the HTML id.
|
|
CreateHtmlId ( IDictionary attributes, string target, bool removeEntry ) : string |
Creates the HTML id.
|
|
CreateInputElement ( string type, string value, IDictionary attributes ) : string |
Creates the input element.
|
|
CreateInputElement ( string type, string target, Object value, IDictionary attributes ) : string |
Creates the specified input element using the specified parameters to supply the name, value, id and others html attributes.
|
|
CreateInputElement ( string type, string id, string target, string value, IDictionary attributes ) : string |
Creates the specified input element using the specified parameters to supply the name, value, id and others html attributes.
|
|
FormatIfNecessary ( object value, IDictionary attributes ) : string |
Formats if necessary.
|
|
GenerateSelect ( string target, object selectedValue, IEnumerable dataSource, IDictionary attributes ) : string |
Generates the select.
|
|
IsPresent ( object value, object initialSetValue, ValueGetter propertyOnInitialSet, bool isMultiple ) : bool |
Determines whether the present value matches the value on the initialSetValue (which can be a single value or a set)
|
|
ObtainRootInstance ( RequestContext context, string target ) : object |
Obtains the root instance.
|
|
ObtainRootInstance ( RequestContext context, string target, string &pieces ) : object |
Obtains the root instance.
|
|
ObtainTargetProperty ( RequestContext context, string target, Action |
Obtains the target property.
|
|
ObtainValue ( RequestContext context, string target ) : object |
Queries the context for the target value
|
|
ObtainValue ( string target ) : object |
Queries the context for the target value
|
|
QueryPropertyRecursive ( object rootInstance, string propertyPath, int piece ) : object |
|
|
RewriteTargetIfWithinObjectScope ( string target ) : string |
Rewrites the target if within object scope.
|
Метод | Описание | |
---|---|---|
AddChecked ( IDictionary attributes ) : void | ||
ApplyFilterOptions ( IDictionary attributes ) : void | ||
ApplyNumberOnlyOptions ( IDictionary attributes ) : void | ||
AreEqual ( object left, object right ) : bool | ||
AssertIsValidArray ( object instance, string property, int index ) : void | ||
CheckForExistenceAndExtractIndex ( string &property, int &index ) : bool | ||
CheckboxItem ( int index, string target, string suffix, Castle.MonoRail.Framework.Helpers.SetItem item, IDictionary attributes ) : string |
Outputs a checkbox element (for internal use)
|
|
CollectValidators ( RequestContext requestContext, string target ) : IValidator[] | ||
CreateHtmlId ( string name ) : string | ||
GetArrayElement ( object instance, int index ) : object | ||
ObtainRootType ( RequestContext context, string target, string &pieces ) : |
Obtains the type of the root.
|
|
QueryPropertyInfoRecursive ( |
||
RemoveChecked ( IDictionary attributes ) : void | ||
ResolveFlagsToUse ( |
||
SafeHtmlEncode ( string content ) : string |
public AjaxFormTag ( IDictionary parameters ) : string | ||
parameters | IDictionary | |
Результат | string |
protected ApplyValidation ( InputElementType inputType, string target, IDictionary &attributes ) : void | ||
inputType | InputElementType | Type of the input. |
target | string | The target. |
attributes | IDictionary | The attributes. |
Результат | void |
public Button ( string value ) : string | ||
value | string | The value. |
Результат | string |
public Button ( string value, IDictionary attributes ) : string | ||
value | string | The value. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public ButtonElement ( string innerText ) : string | ||
innerText | string | The inner text of the button element. |
Результат | string |
public ButtonElement ( string innerText, string type ) : string | ||
innerText | string | The inner text of the button element. |
type | string | The type of the button. |
Результат | string |
public ButtonElement ( string innerText, string type, IDictionary attributes ) : string | ||
innerText | string | The inner text of the button element. |
type | string | The type of the button. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public CheckboxField ( string target ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | string |
public CheckboxField ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public CreateCheckboxList ( string target, IEnumerable dataSource ) : CheckboxList | ||
target | string | The object to get the value from and to be based on to create the element name. |
dataSource | IEnumerable | The set of available elements |
Результат | CheckboxList |
public CreateCheckboxList ( string target, IEnumerable dataSource, IDictionary attributes ) : CheckboxList | ||
target | string | The object to get the value from and to be based on to create the element name. |
dataSource | IEnumerable | The set of available elements |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | CheckboxList |
protected static CreateHtmlId ( IDictionary attributes, string target ) : string | ||
attributes | IDictionary | The attributes. |
target | string | The target. |
Результат | string |
protected static CreateHtmlId ( IDictionary attributes, string target, bool removeEntry ) : string | ||
attributes | IDictionary | The attributes. |
target | string | The target. |
removeEntry | bool | if set to |
Результат | string |
protected CreateInputElement ( string type, string value, IDictionary attributes ) : string | ||
type | string | The type. |
value | string | The value. |
attributes | IDictionary | The attributes. |
Результат | string |
protected CreateInputElement ( string type, string target, Object value, IDictionary attributes ) : string | ||
type | string | |
target | string | The object to get the value from and to be based on to create the element name. |
value | Object | |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
protected CreateInputElement ( string type, string id, string target, string value, IDictionary attributes ) : string | ||
type | string | |
id | string | |
target | string | The object to get the value from and to be based on to create the element name. |
value | string | |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public static EnumToPairs ( |
||
enumType | enum type. | |
Результат | string>[].Pair |
public FileField ( string target ) : string | ||
target | string | The object to be based on when creating the element name. |
Результат | string |
public FileField ( string target, IDictionary attributes ) : string | ||
target | string | The object to be based on when creating the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public FilteredTextField ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public FormTag ( IDictionary parameters ) : string | ||
parameters | IDictionary | The parameters for the tag or for action and form validation generation. |
Результат | string |
public FormTag ( string url, IDictionary parameters ) : string | ||
url | string | The hardcoded url. |
parameters | IDictionary | The parameters for the tag or for action and form validation generation. |
Результат | string |
protected static FormatIfNecessary ( object value, IDictionary attributes ) : string | ||
value | object | The value. |
attributes | IDictionary | The attributes. |
Результат | string |
protected GenerateSelect ( string target, object selectedValue, IEnumerable dataSource, IDictionary attributes ) : string | ||
target | string | The target. |
selectedValue | object | The selected value. |
dataSource | IEnumerable | The data source. |
attributes | IDictionary | The attributes. |
Результат | string |
public HiddenField ( string target ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | string |
public HiddenField ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public HiddenField ( string target, object value ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
value | object | The value for the hidden field |
Результат | string |
public HiddenField ( string target, object value, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
value | object | The value for the hidden field |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
protected static IsPresent ( object value, object initialSetValue, ValueGetter propertyOnInitialSet, bool isMultiple ) : bool | ||
value | object | Value from the datasource |
initialSetValue | object | Value from the initial selection set |
propertyOnInitialSet | ValueGetter | Optional. Property to obtain the value from |
isMultiple | bool | |
Результат | bool |
public LabelFor ( string target, string label ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
label | string | Legend |
Результат | string |
public LabelFor ( string target, string label, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
label | string | Legend |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public NumberField ( string target ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | string |
public NumberField ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public NumberFieldValue ( string target, object value ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
value | object | The current value to output. |
Результат | string |
public NumberFieldValue ( string target, object value, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
value | object | The current value to output. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
protected ObtainRootInstance ( RequestContext context, string target ) : object | ||
context | RequestContext | The context. |
target | string | The object to get the value from and to be based on to create the element name. |
Результат | object |
protected ObtainRootInstance ( RequestContext context, string target, string &pieces ) : object | ||
context | RequestContext | The context. |
target | string | The target. |
pieces | string | The pieces. |
Результат | object |
protected ObtainTargetProperty ( RequestContext context, string target, Action |
||
context | RequestContext | The context. |
target | string | The target. |
action | Action |
The action. |
Результат |
protected ObtainValue ( RequestContext context, string target ) : object | ||
context | RequestContext | |
target | string | The object to get the value from and to be based on to create the element name. |
Результат | object |
protected ObtainValue ( string target ) : object | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | object |
public PasswordField ( string target ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | string |
public PasswordField ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public PasswordNumberField ( string target ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | string |
public PasswordNumberField ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public Push ( string target ) : void | ||
target | string | The target. |
Результат | void |
public Push ( string target, IDictionary parameters ) : void | ||
target | string | The target. |
parameters | IDictionary | The parameters. |
Результат | void |
protected QueryPropertyRecursive ( object rootInstance, string propertyPath, int piece ) : object | ||
rootInstance | object | |
propertyPath | string | |
piece | int | |
Результат | object |
public RadioField ( string target, object valueToSend ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
valueToSend | object | |
Результат | string |
public RadioField ( string target, object valueToSend, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
valueToSend | object | |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
protected RewriteTargetIfWithinObjectScope ( string target ) : string | ||
target | string | The target. |
Результат | string |
public Select ( string target, IEnumerable dataSource ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
dataSource | IEnumerable | The set of available elements |
Результат | string |
public Select ( string target, IEnumerable dataSource, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
dataSource | IEnumerable | The set of available elements |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public Select ( string target, object selectedValue, IEnumerable dataSource, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
selectedValue | object | |
dataSource | IEnumerable | The set of available elements |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public Service ( IServiceProvider provider ) : void | ||
provider | IServiceProvider | The service proviver |
Результат | void |
public Submit ( string value ) : string | ||
value | string | The value/caption for the button. |
Результат | string |
public Submit ( string value, IDictionary attributes ) : string | ||
value | string | The value/caption for the button. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public TextArea ( string target ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | string |
public TextArea ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public TextAreaValue ( string target, object value, IDictionary attributes ) : string | ||
target | string | The target to base the element name on. |
value | object | The value to apply to the field. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public TextField ( string target ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
Результат | string |
public TextField ( string target, IDictionary attributes ) : string | ||
target | string | The object to get the value from and to be based on to create the element name. |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public TextFieldValue ( string target, object value ) : string | ||
target | string | The string to be used to create the element name. |
value | object | Value to supply to the element (instead of querying the target) |
Результат | string |
public TextFieldValue ( string target, object value, IDictionary attributes ) : string | ||
target | string | The string to be used to create the element name. |
value | object | Value to supply to the element (instead of querying the target) |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
Результат | string |
public UseWebValidatorProvider ( IBrowserValidatorProvider provider ) : void | ||
provider | IBrowserValidatorProvider | The validation provider. |
Результат | void |
protected static BindingFlags FieldFlags | ||
Результат | BindingFlags |
protected static BindingFlags PropertyFlags | ||
Результат | BindingFlags |
protected static BindingFlags PropertyFlags2 | ||
Результат | BindingFlags |