EdmCoreModel.GetString 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
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.
- isNullable
- Boolean
Flag specifying if the referenced type should be nullable.
Returns
A new string type reference.