EdmStructuredType Constructor
Initializes a new instance of the EdmStructuredType class.
Namespace: Microsoft.Data.Edm.Library
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Protected Sub New ( _
isAbstract As Boolean, _
isOpen As Boolean, _
baseStructuredType As IEdmStructuredType _
)
'Usage
Dim isAbstract As Boolean
Dim isOpen As Boolean
Dim baseStructuredType As IEdmStructuredType
Dim instance As New EdmStructuredType(isAbstract, _
isOpen, baseStructuredType)
protected EdmStructuredType(
bool isAbstract,
bool isOpen,
IEdmStructuredType baseStructuredType
)
protected:
EdmStructuredType(
bool isAbstract,
bool isOpen,
IEdmStructuredType^ baseStructuredType
)
new :
isAbstract:bool *
isOpen:bool *
baseStructuredType:IEdmStructuredType -> EdmStructuredType
protected function EdmStructuredType(
isAbstract : boolean,
isOpen : boolean,
baseStructuredType : IEdmStructuredType
)
Parameters
- isAbstract
Type: System.Boolean
Denotes a structured type that cannot be instantiated.
- isOpen
Type: System.Boolean
Denotes if the type is open.
- baseStructuredType
Type: Microsoft.Data.Edm.IEdmStructuredType
Base type of the type.