EdmCoreModel.GetBinary Method (Boolean, Nullable<Int32>, Nullable<Boolean>, Boolean)
Gets a reference to a binary type.
Namespace: Microsoft.Data.Edm.Library
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Function GetBinary ( _
isUnbounded As Boolean, _
maxLength As Nullable(Of Integer), _
isFixedLength As Nullable(Of Boolean), _
isNullable As Boolean _
) As IEdmBinaryTypeReference
'Usage
Dim instance As EdmCoreModel
Dim isUnbounded As Boolean
Dim maxLength As Nullable(Of Integer)
Dim isFixedLength As Nullable(Of Boolean)
Dim isNullable As Boolean
Dim returnValue As IEdmBinaryTypeReference
returnValue = instance.GetBinary(isUnbounded, _
maxLength, isFixedLength, isNullable)
public IEdmBinaryTypeReference GetBinary(
bool isUnbounded,
Nullable<int> maxLength,
Nullable<bool> isFixedLength,
bool isNullable
)
public:
IEdmBinaryTypeReference^ GetBinary(
bool isUnbounded,
Nullable<int> maxLength,
Nullable<bool> isFixedLength,
bool isNullable
)
member GetBinary :
isUnbounded:bool *
maxLength:Nullable<int> *
isFixedLength:Nullable<bool> *
isNullable:bool -> IEdmBinaryTypeReference
public function GetBinary(
isUnbounded : boolean,
maxLength : Nullable<int>,
isFixedLength : Nullable<boolean>,
isNullable : boolean
) : IEdmBinaryTypeReference
Parameters
- isUnbounded
Type: System.Boolean
true to indicate that the maximum length is the maximum allowed value; otherwise, false.
- maxLength
Type: System.Nullable<Int32>
The maximum length of a value of this type.
- isFixedLength
Type: System.Nullable<Boolean>
true to indicate that the length can vary; otherwise, false.
- isNullable
Type: System.Boolean
true to indicate that the referenced type should be nullable; otherwise, false.
Return Value
Type: Microsoft.Data.Edm.IEdmBinaryTypeReference
A binary type reference.