PersonalizationStateQuery::Item Property
Gets or sets the value of the query parameter.
Assembly: System.Web (in System.Web.dll)
public: property Object^ Item[String^ queryKey] { Object^ get (String^ queryKey); void set (String^ queryKey, Object^ value); }
Parameters
- queryKey
- Type: System::String
A case-insensitive query string. The value should be one of the following: "PathToMatch", "UserInactiveSinceDate", or "UsernameToMatch".
Property Value
Type: System::ObjectThe value of the query parameter indicated by the queryKey parameter.
| Exception | Condition |
|---|---|
| ArgumentNullException | queryKey is nullptr. |
| ArgumentException | queryKey is an empty string (""). - or - When trimmed, queryKey results in an empty string. - or - A value provided for one of the three properties on PersonalizationStateQuery was of the wrong type. |
This property is the default indexer for the PersonalizationStateQuery class. It returns the value of the query parameter indicated by queryKey. You can use PersonalizationStateQuery.this["UsernameToMatch"], PersonalizationStateQuery.this["PathToMatch"] and PersonalizationStateQuery.this["UserInactiveSinceDate"] to set the UsernameToMatch, PathToMatch, and UserInactiveSinceDate properties, respectively. When these three properties are set in the indexer, they are validated against the proper type.
This property returns nullptr if queryKey does not exist.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.