IDataServiceHost.GetQueryStringItem(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a data item identified by the identity key contained by the parameter of the method.
public:
System::String ^ GetQueryStringItem(System::String ^ item);
public string GetQueryStringItem (string item);
abstract member GetQueryStringItem : string -> string
Public Function GetQueryStringItem (item As String) As String
Parameters
- item
- String
String value containing identity key of item requested.
Returns
The data item requested by the query serialized as a string.
Remarks
The query string portion of an WCF Data Services URI is made up of key/value pairs, with the key and value separated by the '=' character. GetQueryStringItem
returns a data item for an identity key specified by the parameter of the method.