EdmComplexObject Constructor
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
EdmComplexObject(IEdmComplexType) | Initializes a new instance of the EdmStructuredObject class. |
|
EdmComplexObject(IEdmComplexType, Boolean) | Initializes a new instance of the EdmStructuredObject class. |
|
EdmComplexObject(IEdmComplexTypeReference) | Initializes a new instance of the EdmStructuredObject class. |
See Also
EdmComplexObject Class
System.Web.Http.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.Data.Edm.IEdmComplexTypeThe 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.Data.Edm.IEdmComplexTypeThe IEdmComplexType of this object.
isNullable
Type: System.Booleantrue 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.Data.Edm.IEdmComplexTypeReferenceThe IEdmComplexTypeReference of this object.
Return to top