Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Initializes a new instance of the EdmBinaryTypeReference class.
Namespace: Microsoft.Data.Edm.Library
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Sub New ( _
definition As IEdmPrimitiveType, _
isNullable As Boolean, _
isUnbounded As Boolean, _
maxLength As Nullable(Of Integer), _
isFixedLength As Nullable(Of Boolean) _
)
'Usage
Dim definition As IEdmPrimitiveType
Dim isNullable As Boolean
Dim isUnbounded As Boolean
Dim maxLength As Nullable(Of Integer)
Dim isFixedLength As Nullable(Of Boolean)
Dim instance As New EdmBinaryTypeReference(definition, _
isNullable, isUnbounded, maxLength, _
isFixedLength)
public EdmBinaryTypeReference(
IEdmPrimitiveType definition,
bool isNullable,
bool isUnbounded,
Nullable<int> maxLength,
Nullable<bool> isFixedLength
)
public:
EdmBinaryTypeReference(
IEdmPrimitiveType^ definition,
bool isNullable,
bool isUnbounded,
Nullable<int> maxLength,
Nullable<bool> isFixedLength
)
new :
definition:IEdmPrimitiveType *
isNullable:bool *
isUnbounded:bool *
maxLength:Nullable<int> *
isFixedLength:Nullable<bool> -> EdmBinaryTypeReference
public function EdmBinaryTypeReference(
definition : IEdmPrimitiveType,
isNullable : boolean,
isUnbounded : boolean,
maxLength : Nullable<int>,
isFixedLength : Nullable<boolean>
)
Parameters
- definition
Type: Microsoft.Data.Edm.IEdmPrimitiveType
The type this reference refers to.
- isNullable
Type: System.Boolean
Denotes whether the type can be nullable.
- isUnbounded
Type: System.Boolean
- maxLength
Type: System.Nullable<Int32>
The maximum length of a value of this type.
- isFixedLength
Type: System.Nullable<Boolean>
Denotes whether the length can vary.