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)

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

type CompositeTableKey = class end

NameDescription
System_CAPS_pubmethodCompositeTableKey(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.

NameDescription
System_CAPS_pubpropertySegments

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

NameDescription
System_CAPS_pubmethodEquals(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticParse(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_pubmethodToString()

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

System_CAPS_pubmethodSystem_CAPS_staticTryParse(String, CompositeTableKey)

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

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

Return to top
Show: