2 instantiations of MethodParameterValue
System.Web (2)
UI\WebControls\MethodParametersDictionary.cs (1)
59
MethodParameterValue parameter = new
MethodParameterValue
();
UI\WebControls\ModelDataSourceView.cs (1)
1029
SelectParameters.Add(parameterInfo.Name, new
MethodParameterValue
());
27 references to MethodParameterValue
System.Web (27)
UI\WebControls\MethodParametersDictionary.cs (27)
8
internal sealed class MethodParametersDictionary : IDictionary<string,
MethodParameterValue
>, IStateManager {
12
private Dictionary<string,
MethodParameterValue
> _innerDictionary;
59
MethodParameterValue
parameter = new MethodParameterValue();
73
foreach (KeyValuePair<string,
MethodParameterValue
> kvp in InnerDictionary) {
86
foreach (
MethodParameterValue
parameter in InnerDictionary.Values) {
91
private Dictionary<string,
MethodParameterValue
> InnerDictionary {
94
_innerDictionary = new Dictionary<string,
MethodParameterValue
>();
107
public ICollection<
MethodParameterValue
> Values {
113
public
MethodParameterValue
this[string key] {
125
public void Add(string key,
MethodParameterValue
value) {
141
MethodParameterValue
value = InnerDictionary[key];
149
public bool TryGetValue(string key, out
MethodParameterValue
value) {
155
void ICollection<KeyValuePair<string,
MethodParameterValue
>>.Clear() {
159
bool ICollection<KeyValuePair<string,
MethodParameterValue
>>.IsReadOnly {
161
return ((ICollection<KeyValuePair<string,
MethodParameterValue
>>)InnerDictionary).IsReadOnly;
165
void ICollection<KeyValuePair<string,
MethodParameterValue
>>.Add(KeyValuePair<string,
MethodParameterValue
> item) {
169
bool ICollection<KeyValuePair<string,
MethodParameterValue
>>.Contains(KeyValuePair<string,
MethodParameterValue
> item) {
170
return ((ICollection<KeyValuePair<string,
MethodParameterValue
>>)InnerDictionary).Contains(item);
173
void ICollection<KeyValuePair<string,
MethodParameterValue
>>.CopyTo(KeyValuePair<string,
MethodParameterValue
>[] array, int arrayIndex) {
174
((ICollection<KeyValuePair<string,
MethodParameterValue
>>)InnerDictionary).CopyTo(array, arrayIndex);
177
bool ICollection<KeyValuePair<string,
MethodParameterValue
>>.Remove(KeyValuePair<string,
MethodParameterValue
> item) {
178
return ((ICollection<KeyValuePair<string,
MethodParameterValue
>>)InnerDictionary).Remove(item);
183
public IEnumerator<KeyValuePair<string,
MethodParameterValue
>> GetEnumerator() {