ExtensionMethods.ComplexDefinition Method
Gets the complex type to which the type refers.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ComplexDefinition ( _
type As IEdmComplexTypeReference _
) As IEdmComplexType
'Usage
Dim type As IEdmComplexTypeReference
Dim returnValue As IEdmComplexType
returnValue = type.ComplexDefinition()
public static IEdmComplexType ComplexDefinition(
this IEdmComplexTypeReference type
)
[ExtensionAttribute]
public:
static IEdmComplexType^ ComplexDefinition(
IEdmComplexTypeReference^ type
)
static member ComplexDefinition :
type:IEdmComplexTypeReference -> IEdmComplexType
public static function ComplexDefinition(
type : IEdmComplexTypeReference
) : IEdmComplexType
Parameters
- type
Type: Microsoft.Data.Edm.IEdmComplexTypeReference
The reference to a complex type.
Return Value
Type: Microsoft.Data.Edm.IEdmComplexType
The definition of a complex type.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmComplexTypeReference. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).