EdmComplexObject Constructor

 

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

Overload List

Name Description
System_CAPS_pubmethod EdmComplexObject(IEdmComplexType)

Initializes a new instance of the EdmStructuredObject class.

System_CAPS_pubmethod EdmComplexObject(IEdmComplexType, Boolean)

Initializes a new instance of the EdmStructuredObject class.

System_CAPS_pubmethod 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

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

  • 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

Return to top