ParameterCollection.GetValues(HttpContext, Control) 方法

定义

获取集合当前包含的 Parameter 对象名称及其相应值的排序集合。

public:
 System::Collections::Specialized::IOrderedDictionary ^ GetValues(System::Web::HttpContext ^ context, System::Web::UI::Control ^ control);
public System.Collections.Specialized.IOrderedDictionary GetValues (System.Web.HttpContext context, System.Web.UI.Control control);
member this.GetValues : System.Web.HttpContext * System.Web.UI.Control -> System.Collections.Specialized.IOrderedDictionary
Public Function GetValues (context As HttpContext, control As Control) As IOrderedDictionary

参数

context
HttpContext

HttpRequest 绑定到的当前 Parameter

control
Control

传递给每个参数的 Control 方法的 Evaluate(HttpContext, Control) 实例。

返回

名称/值对的 IOrderedDictionary

注解

control参数由Parameter集合中包含的对象用于检索Page对象绑定到的 Parameter 和当前HttpRequest对象。

IOrderedDictionary由于 对象必须具有唯一名称的条目,ParameterCollection但集合不需要或不保证唯Parameter一的对象名称,因此此方法的实现会将一个数字追加到每个Name属性的末尾,以确保返回的集合中的唯一性。

适用于