Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.OData.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) | EdmComplexObject(IEdmComplexType) | Initializes a new instance of the EdmStructuredObject class. | 
| .jpeg) | EdmComplexObject(IEdmComplexType, Boolean) | Initializes a new instance of the EdmStructuredObject class. | 
| .jpeg) | EdmComplexObject(IEdmComplexTypeReference) | Initializes a new instance of the EdmStructuredObject class. | 
See Also
EdmComplexObject Class
System.Web.OData Namespace
Return to top
EdmComplexObject Constructor (IEdmComplexType)
Initializes a new instance of the EdmStructuredObject class.
Syntax
public EdmComplexObject(
    IEdmComplexType edmType
)
public:
EdmComplexObject(
    IEdmComplexType^ edmType
)
new : 
        edmType:IEdmComplexType -> EdmComplexObject
Public Sub New (
    edmType As IEdmComplexType
)
Parameters
- edmType 
 Type: Microsoft.OData.Edm.IEdmComplexType- The IEdmStructuredType of this object. 
Return to top
EdmComplexObject Constructor (IEdmComplexType, Boolean)
Initializes a new instance of the EdmStructuredObject class.
Syntax
public EdmComplexObject(
    IEdmComplexType edmType,
    bool isNullable
)
public:
EdmComplexObject(
    IEdmComplexType^ edmType,
    bool isNullable
)
new : 
        edmType:IEdmComplexType *
        isNullable:bool -> EdmComplexObject
Public Sub New (
    edmType As IEdmComplexType,
    isNullable As Boolean
)
Parameters
- edmType 
 Type: Microsoft.OData.Edm.IEdmComplexType- The IEdmComplexType of this object. 
- isNullable 
 Type: System.Boolean- true if this object can be nullable; otherwise, false. 
Return to top
EdmComplexObject Constructor (IEdmComplexTypeReference)
Initializes a new instance of the EdmStructuredObject class.
Syntax
public EdmComplexObject(
    IEdmComplexTypeReference edmType
)
public:
EdmComplexObject(
    IEdmComplexTypeReference^ edmType
)
new : 
        edmType:IEdmComplexTypeReference -> EdmComplexObject
Public Sub New (
    edmType As IEdmComplexTypeReference
)
Parameters
- edmType 
 Type: Microsoft.OData.Edm.IEdmComplexTypeReference- The IEdmComplexTypeReference of this object. 
Return to top