Share via


TryGetClrTypeName Delegate

Definition

Represents a delegate to get CLR type name based on the edm type name and IEdmModel.

public delegate bool TryGetClrTypeName(IEdmModel edmModel, string edmTypeName, out string clrTypeName);
type TryGetClrTypeName = delegate of IEdmModel * string * string -> bool
Public Delegate Function TryGetClrTypeName(edmModel As IEdmModel, edmTypeName As String, ByRef clrTypeName As String) As Boolean 

Parameters

edmModel
IEdmModel

The IEdmModel used to find the type name.

edmTypeName
String

The edm type name.

clrTypeName
String

The output parameter returning a CLR type name.

Return Value

True if the delegate find the type name, else false.

Applies to