EdmEnumType Constructor (String, String, IEdmPrimitiveType, Boolean)
Initializes a new instance of the EdmEnumType class.
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, _
underlyingType As IEdmPrimitiveType, _
isFlags As Boolean _
)
'Usage
Dim namespaceName As String
Dim name As String
Dim underlyingType As IEdmPrimitiveType
Dim isFlags As Boolean
Dim instance As New EdmEnumType(namespaceName, _
name, underlyingType, isFlags)
public EdmEnumType(
string namespaceName,
string name,
IEdmPrimitiveType underlyingType,
bool isFlags
)
public:
EdmEnumType(
String^ namespaceName,
String^ name,
IEdmPrimitiveType^ underlyingType,
bool isFlags
)
new :
namespaceName:string *
name:string *
underlyingType:IEdmPrimitiveType *
isFlags:bool -> EdmEnumType
public function EdmEnumType(
namespaceName : String,
name : String,
underlyingType : IEdmPrimitiveType,
isFlags : boolean
)
Parameters
- namespaceName
Type: System.String
The namespace this enumeration type belongs to.
- name
Type: System.String
The name of this enumeration type.
- underlyingType
Type: Microsoft.Data.Edm.IEdmPrimitiveType
The underlying type of this enumeration type.
- isFlags
Type: System.Boolean
A value indicating whether the enumeration type can be treated as a bit field.