TryGetClrTypeName Delegate
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.
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
- 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.