ODataEntryProperty Type
An object representing a single OData entry property.
Remarks
An object representing a single OData entry property.
Fields
Attributes String |
A space-separated list of attributes (name-value pairs) contained within an OData entry element. For example: name1="value1" name2="value2" |
IsNull boolean |
Indicates whether a property value of a primitive type is null. |
Name String |
The Name of the OData entry element. Note: For properties derived from a complex type, the name of the property and it's sub-property will be separated by '/'. For example, let's say you have a property called "MailingAddress" that is derived from a complex type called "Address". The "Address" complex type contains a property called "City". This particular property will be returned as "MailingAddress/City". Setting this property to empty string prior to calling UpdateEntry will result in the item not being sent in the update request. Thus removing it from the OData entry. |
Type String |
The type of the OData schema property. |
Value String |
The Value of the OData entry element. |
XPath String |
The XPath of the OData entry property. This value can be used to set XPath or can be used within UpdateProperty to update a specific property. |
Constructors
public ODataEntryProperty();
public ODataEntryProperty(String name, String value);