EdmCoreModel.GetBinary Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
- isNullable
- Boolean
Flag specifying if the referenced type should be nullable.
Returns
A new binary type reference.