EdmStructuredObject Class

 

Represents an IEdmStructuredObject with no backing CLR Type.

Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.OData.dll)

Inheritance Hierarchy

System.Object
  System.Dynamic.DynamicObject
    System.Web.OData.Delta
      System.Web.OData.EdmStructuredObject
        System.Web.OData.EdmComplexObject
        System.Web.OData.EdmEntityObject

Syntax

public abstract class EdmStructuredObject : Delta, IEdmStructuredObject, 
    IEdmObject
public ref class EdmStructuredObject abstract : Delta, IEdmStructuredObject, 
    IEdmObject
[<AbstractClass>]
type EdmStructuredObject = 
    class
        inherit Delta
        interface IEdmStructuredObject
        interface IEdmObject
    end
Public MustInherit Class EdmStructuredObject
    Inherits Delta
    Implements IEdmStructuredObject, IEdmObject

Constructors

Name Description
System_CAPS_protmethod EdmStructuredObject(IEdmStructuredType)

Initializes a new instance of the EdmStructuredObject class.

System_CAPS_protmethod EdmStructuredObject(IEdmStructuredType, Boolean)

Initializes a new instance of the EdmStructuredObject class.

System_CAPS_protmethod EdmStructuredObject(IEdmStructuredTypeReference)

Initializes a new instance of the EdmStructuredObject class.

Properties

Name Description
System_CAPS_pubproperty ActualEdmType

Gets or sets the actual IEdmStructuredType of the entity or complex type of this object.

System_CAPS_pubproperty ExpectedEdmType

Gets or sets the expected IEdmStructuredType of the entity or complex type of this object.

System_CAPS_pubproperty IsNullable

Gets or sets whether the EDM object is nullable or not.

Methods

Name Description
System_CAPS_pubmethod Clear()

(Overrides Delta.Clear().)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetChangedPropertyNames()

(Overrides Delta.GetChangedPropertyNames().)

System_CAPS_pubmethod GetDynamicMemberNames()

(Inherited from DynamicObject.)

System_CAPS_pubmethod GetEdmType()

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetMetaObject(Expression)

(Inherited from DynamicObject.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod GetUnchangedPropertyNames()

(Overrides Delta.GetUnchangedPropertyNames().)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod TryBinaryOperation(BinaryOperationBinder, Object, Object)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TryConvert(ConvertBinder, Object)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TryCreateInstance(CreateInstanceBinder, Object[], Object)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TryDeleteIndex(DeleteIndexBinder, Object[])

(Inherited from DynamicObject.)

System_CAPS_pubmethod TryDeleteMember(DeleteMemberBinder)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TryGetDynamicProperties()

Get all dynamic properties

System_CAPS_pubmethod TryGetIndex(GetIndexBinder, Object[], Object)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TryGetMember(GetMemberBinder, Object)

Overrides the DynamicObject TryGetMember method, so that only the properties of Entity can be got. (Inherited from Delta.)

System_CAPS_pubmethod TryGetPropertyType(String, Type)

(Overrides Delta.TryGetPropertyType(String, Type).)

System_CAPS_pubmethod TryGetPropertyValue(String, Object)

(Overrides Delta.TryGetPropertyValue(String, Object).)

System_CAPS_pubmethod TryInvoke(InvokeBinder, Object[], Object)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TryInvokeMember(InvokeMemberBinder, Object[], Object)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TrySetIndex(SetIndexBinder, Object[], Object)

(Inherited from DynamicObject.)

System_CAPS_pubmethod TrySetMember(SetMemberBinder, Object)

Overrides the DynamicObject TrySetMember method, so that only the properties of Entity can be set. (Inherited from Delta.)

System_CAPS_pubmethod TrySetPropertyValue(String, Object)

(Overrides Delta.TrySetPropertyValue(String, Object).)

System_CAPS_pubmethod TryUnaryOperation(UnaryOperationBinder, Object)

(Inherited from DynamicObject.)

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

System.Web.OData Namespace

Return to top