EdmStructuredObject Constructor
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
EdmStructuredObject(IEdmStructuredType) | Initializes a new instance of the EdmStructuredObject class. |
|
EdmStructuredObject(IEdmStructuredType, Boolean) | Initializes a new instance of the EdmStructuredObject class. |
|
EdmStructuredObject(IEdmStructuredTypeReference) | Initializes a new instance of the EdmStructuredObject class. |
See Also
EdmStructuredObject Class
System.Web.Http.OData Namespace
Return to top
EdmStructuredObject Constructor (IEdmStructuredType)
Initializes a new instance of the EdmStructuredObject class.
Syntax
protected EdmStructuredObject(
IEdmStructuredType edmType
)
protected:
EdmStructuredObject(
IEdmStructuredType^ edmType
)
new :
edmType:IEdmStructuredType -> EdmStructuredObject
Protected Sub New (
edmType As IEdmStructuredType
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmStructuredTypeThe IEdmStructuredType of this object.
Return to top
EdmStructuredObject Constructor (IEdmStructuredType, Boolean)
Initializes a new instance of the EdmStructuredObject class.
Syntax
protected EdmStructuredObject(
IEdmStructuredType edmType,
bool isNullable
)
protected:
EdmStructuredObject(
IEdmStructuredType^ edmType,
bool isNullable
)
new :
edmType:IEdmStructuredType *
isNullable:bool -> EdmStructuredObject
Protected Sub New (
edmType As IEdmStructuredType,
isNullable As Boolean
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmStructuredTypeThe IEdmStructuredTypeReference of this object.
isNullable
Type: System.Booleantrue if this object can be nullable; otherwise, false.
Return to top
EdmStructuredObject Constructor (IEdmStructuredTypeReference)
Initializes a new instance of the EdmStructuredObject class.
Syntax
protected EdmStructuredObject(
IEdmStructuredTypeReference edmType
)
protected:
EdmStructuredObject(
IEdmStructuredTypeReference^ edmType
)
new :
edmType:IEdmStructuredTypeReference -> EdmStructuredObject
Protected Sub New (
edmType As IEdmStructuredTypeReference
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmStructuredTypeReferenceThe IEdmStructuredTypeReference of this object.
Return to top