PersonalizationStateQuery.Item[String] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置查询参数的值。
public:
property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ queryKey); void set(System::String ^ queryKey, System::Object ^ value); };
public object this[string queryKey] { get; set; }
member this.Item(string) : obj with get, set
Default Public Property Item(queryKey As String) As Object
参数
- queryKey
- String
不区分大小写的查询字符串。 该值应为以下值之一:“PathToMatch”、“UserInactiveSinceDate”或“UsernameToMatch”。
属性值
由 queryKey
参数指示的查询参数的值。
例外
queryKey
为 null
。
queryKey
为空字符串 ("")。
或 - 进行修整时,
queryKey
将生成空字符串。或 - 为 PersonalizationStateQuery 中的三个属性之一提供的值的类型不正确。
注解
此属性是类的默认索引器 PersonalizationStateQuery 。 它返回指示的查询参数的值 queryKey
。 您可以使用 PersonalizationStateQuery.this["UsernameToMatch"]
PersonalizationStateQuery.this["PathToMatch"]
和 PersonalizationStateQuery.this["UserInactiveSinceDate"]
分别设置、和 UsernameToMatch PathToMatch UserInactiveSinceDate 属性。 当在索引器中设置这三个属性时,将根据正确的类型对其进行验证。
如果不存在,则此属性返回 null
queryKey
。