Share via


ExtensionMethods.GetUInt32(EdmModel, String, Boolean) Method

Definition

Get type reference to the default UInt32 type definition. The default underlying type is Microsoft.OData.Edm.PrimitiveValueConverterConstants.DefaultUInt32UnderlyingType. If the user has already defined his own UInt32, this method will not define anything and simply returns the type reference.

public static Microsoft.OData.Edm.IEdmTypeDefinitionReference GetUInt32 (this Microsoft.OData.Edm.EdmModel model, string namespaceName, bool isNullable);
static member GetUInt32 : Microsoft.OData.Edm.EdmModel * string * bool -> Microsoft.OData.Edm.IEdmTypeDefinitionReference
<Extension()>
Public Function GetUInt32 (model As EdmModel, namespaceName As String, isNullable As Boolean) As IEdmTypeDefinitionReference

Parameters

model
EdmModel

The model involved

namespaceName
String

The name of the namespace where the type definition resides.

isNullable
Boolean

Indicate if the type definition reference is nullable.

Returns

The nullable type reference to UInt32 type definition.

Applies to