Jaa


EdmCoreModel.GetString Method

Definition

Overloads

GetString(Boolean)

Gets a reference to a binary string type definition.

GetString(Boolean, Nullable<Int32>, Nullable<Boolean>, Boolean)

Gets a reference to a string primitive type definition.

GetString(Boolean)

Gets a reference to a binary string type definition.

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

Parameters

isNullable
Boolean

Flag specifying if the referenced type should be nullable.

Returns

A new string type reference.

Applies to

GetString(Boolean, Nullable<Int32>, Nullable<Boolean>, Boolean)

Gets a reference to a string primitive type definition.

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

Parameters

isUnbounded
Boolean

Flag specifying if max length is the maximum allowable value.

maxLength
Nullable<Int32>

Maximum length of the type.

isUnicode
Nullable<Boolean>

Flag specifying if the type should support unicode encoding.

isNullable
Boolean

Flag specifying if the referenced type should be nullable.

Returns

A new string type reference.

Applies to