Jaa


EdmCoreModel.GetBinary Method

Definition

Overloads

GetBinary(Boolean)

Gets a reference to a binary primitive type definition.

GetBinary(Boolean, Nullable<Int32>, Boolean)

Gets a reference to a binary primitive type definition.

GetBinary(Boolean)

Gets a reference to a binary primitive type definition.

public Microsoft.OData.Edm.IEdmBinaryTypeReference GetBinary (bool isNullable);
member this.GetBinary : bool -> Microsoft.OData.Edm.IEdmBinaryTypeReference
Public Function GetBinary (isNullable As Boolean) As IEdmBinaryTypeReference

Parameters

isNullable
Boolean

Flag specifying if the referenced type should be nullable.

Returns

A new binary type reference.

Applies to

GetBinary(Boolean, Nullable<Int32>, Boolean)

Gets a reference to a binary primitive type definition.

public Microsoft.OData.Edm.IEdmBinaryTypeReference GetBinary (bool isUnbounded, int? maxLength, bool isNullable);
member this.GetBinary : bool * Nullable<int> * bool -> Microsoft.OData.Edm.IEdmBinaryTypeReference
Public Function GetBinary (isUnbounded As Boolean, maxLength As Nullable(Of Integer), isNullable As Boolean) As IEdmBinaryTypeReference

Parameters

isUnbounded
Boolean

Flag specifying if max length is unbounded.

maxLength
Nullable<Int32>

Maximum length of the type.

isNullable
Boolean

Flag specifying if the referenced type should be nullable.

Returns

A new binary type reference.

Applies to