PersonalizationStateQuery.Item[String] 属性

定义

获取或设置查询参数的值。

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”。

属性值

Object

queryKey 参数指示的查询参数的值。

例外

queryKeynull

queryKey 为空字符串 ("")。

  • 或 - 进行修整时,queryKey 将生成空字符串。

  • 或 - 为 PersonalizationStateQuery 中的三个属性之一提供的值的类型不正确。

注解

此属性是类的默认索引器 PersonalizationStateQuery 。 它返回指示的查询参数的值 queryKey 。 您可以使用 PersonalizationStateQuery.this["UsernameToMatch"] PersonalizationStateQuery.this["PathToMatch"]PersonalizationStateQuery.this["UserInactiveSinceDate"] 分别设置、和 UsernameToMatch PathToMatch UserInactiveSinceDate 属性。 当在索引器中设置这三个属性时,将根据正确的类型对其进行验证。

如果不存在,则此属性返回 null queryKey

适用于