Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

EntityProperty Class (Microsoft.WindowsAzure.Storage.Table)

Class for storing information about a single property in an entity in a table.

Namespace:   Microsoft.WindowsAzure.Storage.Table
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Table.::..EntityProperty

Syntax

 
public sealed class EntityProperty : IEquatable<EntityProperty>
 
public ref class EntityProperty sealed : IEquatable<EntityProperty^>
 
[<Sealed>]
type EntityProperty = 
    class
        interface IEquatable<EntityProperty>
    end
 
Public NotInheritable Class EntityProperty
	Implements IEquatable(Of EntityProperty)

Constructors

NameDescription
System_CAPS_pubmethodEntityProperty(Byte[])(array<Byte>^)(Byte[])(Byte())

Initializes a new instance of the EntityProperty class by using the byte array value of the property.

System_CAPS_pubmethodEntityProperty(Nullable<Boolean>)(Nullable<Boolean>)(Nullable<Boolean>)(Nullable(Of Boolean))

Initializes a new instance of the EntityProperty class by using the Boolean value of the property.

System_CAPS_pubmethodEntityProperty(Nullable<DateTime>)(Nullable<DateTime>)(Nullable<DateTime>)(Nullable(Of DateTime))

Initializes a new instance of the EntityProperty class by using the DateTimeDateTimeDateTimeDateTime value of the property.

System_CAPS_pubmethodEntityProperty(Nullable<DateTimeOffset>)(Nullable<DateTimeOffset>)(Nullable<DateTimeOffset>)(Nullable(Of DateTimeOffset))

Initializes a new instance of the EntityProperty class by using the DateTimeOffset value of the property.

System_CAPS_pubmethodEntityProperty(Nullable<Double>)(Nullable<Double>)(Nullable<Double>)(Nullable(Of Double))

Initializes a new instance of the EntityProperty class by using the Double value of the property.

System_CAPS_pubmethodEntityProperty(Nullable<Guid>)(Nullable<Guid>)(Nullable<Guid>)(Nullable(Of Guid))

Initializes a new instance of the EntityProperty class by using the Guid value of the property.

System_CAPS_pubmethodEntityProperty(Nullable<Int32>)(Nullable<Int32>)(Nullable<Int32>)(Nullable(Of Int32))

Initializes a new instance of the EntityProperty class by using the Int32 value of the property.

System_CAPS_pubmethodEntityProperty(Nullable<Int64>)(Nullable<Int64>)(Nullable<Int64>)(Nullable(Of Int64))

Initializes a new instance of the EntityProperty class by using the Int64 value of the property.

System_CAPS_pubmethodEntityProperty(String)(String^)(String)(String)

Initializes a new instance of the EntityProperty class by using the String value of the property.

Properties

NameDescription
System_CAPS_pubpropertyBinaryValueBinaryValueBinaryValueBinaryValue

Gets or sets the byte array value of this EntityProperty object.

System_CAPS_pubpropertyBooleanValueBooleanValueBooleanValueBooleanValue

Gets or sets the boolean value of this EntityProperty object.

System_CAPS_pubpropertyDateTimeDateTimeDateTimeDateTime

Gets or sets the DateTimeDateTimeDateTimeDateTime value of this EntityProperty object. An exception will be thrown if you attempt to set this property to anything other than a DateTimeDateTimeDateTimeDateTime object.

System_CAPS_pubpropertyDateTimeOffsetValueDateTimeOffsetValueDateTimeOffsetValueDateTimeOffsetValue

Gets or sets the DateTimeOffset value of this EntityProperty object.

System_CAPS_pubpropertyDoubleValueDoubleValueDoubleValueDoubleValue

Gets or sets the double value of this EntityProperty object.

System_CAPS_pubpropertyGuidValueGuidValueGuidValueGuidValue

Gets or sets the Guid value of this EntityProperty object.

System_CAPS_pubpropertyInt32ValueInt32ValueInt32ValueInt32Value

Gets or sets the Int32 value of this EntityProperty object.

System_CAPS_pubpropertyInt64ValueInt64ValueInt64ValueInt64Value

Gets or sets the Int64 value of this EntityProperty object.

System_CAPS_pubpropertyPropertyAsObjectPropertyAsObjectPropertyAsObjectPropertyAsObject

Gets the EntityProperty as a generic object.

System_CAPS_pubpropertyPropertyTypePropertyTypePropertyTypePropertyType

Gets the EdmType of this EntityProperty object.

System_CAPS_pubpropertyStringValueStringValueStringValueStringValue

Gets or sets the string value of this EntityProperty object.

Methods

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticCreateEntityPropertyFromObject(Object)(Object^)(Object)(Object)

Creates an EntityProperty from the specified object.

System_CAPS_pubmethodEquals(EntityProperty)(EntityProperty^)(EntityProperty)(EntityProperty)

Compares the given object (which is probably an EntityProperty ) for equality with this object.

System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

Compares the given object (which is probably an EntityProperty ) for equality with this object.(Overrides Object.::..Equals(Object)(Object^)(Object)(Object).)

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForBool(Nullable<Boolean>)(Nullable<Boolean>)(Nullable<Boolean>)(Nullable(Of Boolean))

Creates a new EntityProperty object that represents the specified Boolean value.

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForByteArray(Byte[])(array<Byte>^)(Byte[])(Byte())

Creates a new EntityProperty object that represents the specified byte array.

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForDateTimeOffset(Nullable<DateTimeOffset>)(Nullable<DateTimeOffset>)(Nullable<DateTimeOffset>)(Nullable(Of DateTimeOffset))

Creates a new EntityProperty object that represents the specified DateTimeOffset value.

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForDouble(Nullable<Double>)(Nullable<Double>)(Nullable<Double>)(Nullable(Of Double))

Creates a new EntityProperty object that represents the specified Double value.

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForGuid(Nullable<Guid>)(Nullable<Guid>)(Nullable<Guid>)(Nullable(Of Guid))

Creates a new EntityProperty object that represents the specified Guid value.

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForInt(Nullable<Int32>)(Nullable<Int32>)(Nullable<Int32>)(Nullable(Of Int32))

Creates a new EntityProperty object that represents the specified Int32 value.

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForLong(Nullable<Int64>)(Nullable<Int64>)(Nullable<Int64>)(Nullable(Of Int64))

Creates a new EntityProperty object that represents the specified Int64 value.

System_CAPS_pubmethodSystem_CAPS_staticGeneratePropertyForString(String)(String^)(String)(String)

Creates a new EntityProperty object that represents the specified String value.

System_CAPS_pubmethodGetHashCode()()()()

Gets the hash code for this entity property.(Overrides Object.::..GetHashCode()()()().)

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

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.

Return to top