Share via


CompositeTableKey Class

 

A CompositeTableKey contains one or more keys used to identify a single row in a table. The string format of a CompositeTableKey is a comma separated list (without LWS) of optionally single-quoted terms. The terms only have to be quoted if they contain a comma.

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

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.Mobile.Service.CompositeTableKey

Syntax

public class CompositeTableKey
public ref class CompositeTableKey 
type CompositeTableKey = class end
Public Class CompositeTableKey

Constructors

Name Description
System_CAPS_pubmethod CompositeTableKey(String[])

Initialize a new instance of the CompositeTableKey with a given number of String representing an ordered list of segments making up the composite key.

Properties

Name Description
System_CAPS_pubproperty Segments

Gets the ordered Collection<T> of segments making up the composite key.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_static Parse(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.

System_CAPS_pubmethod ToString()

Generates a String representation of the composite key.(Overrides Object.ToString().)

System_CAPS_pubmethodSystem_CAPS_static TryParse(String, CompositeTableKey)

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

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top