Share via


CompositeTableKey.TryParse Method (String, CompositeTableKey)

 

Attempts creating a new CompositeTableKey from a given tableKey. The return value indicates whether the parsing succeeded.

Namespace:   Microsoft.WindowsAzure.Mobile.Service
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)

Syntax

public static bool TryParse(
    string tableKey,
    out CompositeTableKey compositeTableKey
)
public:
static bool TryParse(
    String^ tableKey,
    [OutAttribute] CompositeTableKey^% compositeTableKey
)
static member TryParse : 
        tableKey:string *
        compositeTableKey:CompositeTableKey byref -> bool
Public Shared Function TryParse (
    tableKey As String,
    <OutAttribute> ByRef compositeTableKey As CompositeTableKey
) As Boolean

Parameters

  • tableKey
    Type: System.String

    The value containing the composite key.

Return Value

Type: System.Boolean

See Also

CompositeTableKey Class
Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top