CompositeTableKey.Parse Method (String)
Parse a string as a CompositeTableKey. The value has to be a comma separated list (without LWS) of optionally single-quoted terms. If the value is not valid then an ArgumentException is thrown.
Namespace: Microsoft.WindowsAzure.Mobile.Service
Assembly: Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)
Syntax
public static CompositeTableKey Parse(
string tableKey
)
public:
static CompositeTableKey^ Parse(
String^ tableKey
)
static member Parse :
tableKey:string -> CompositeTableKey
Public Shared Function Parse (
tableKey As String
) As CompositeTableKey
Parameters
tableKey
Type: System.StringThe value containing the composite key.
Return Value
Type: Microsoft.WindowsAzure.Mobile.Service.CompositeTableKey
A new CompositeTableKey instance.
See Also
CompositeTableKey Class
Microsoft.WindowsAzure.Mobile.Service Namespace
Return to top