EdmComplexType Constructor (String, String, IEdmComplexType, Boolean)
Initializes a new instance of the EdmComplexType class. Note: Complex type inheritance is not supported in EDM version 3.0 and above.
Namespace: Microsoft.Data.Edm.Library
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Sub New ( _
namespaceName As String, _
name As String, _
baseType As IEdmComplexType, _
isAbstract As Boolean _
)
'Usage
Dim namespaceName As String
Dim name As String
Dim baseType As IEdmComplexType
Dim isAbstract As Boolean
Dim instance As New EdmComplexType(namespaceName, _
name, baseType, isAbstract)
public EdmComplexType(
string namespaceName,
string name,
IEdmComplexType baseType,
bool isAbstract
)
public:
EdmComplexType(
String^ namespaceName,
String^ name,
IEdmComplexType^ baseType,
bool isAbstract
)
new :
namespaceName:string *
name:string *
baseType:IEdmComplexType *
isAbstract:bool -> EdmComplexType
public function EdmComplexType(
namespaceName : String,
name : String,
baseType : IEdmComplexType,
isAbstract : boolean
)
Parameters
- namespaceName
Type: System.String
The namespace this type belongs to.
- name
Type: System.String
The name of this type within its namespace.
- baseType
Type: Microsoft.Data.Edm.IEdmComplexType
The base type of this complex type.
- isAbstract
Type: System.Boolean
Denotes whether this complex type is abstract.