ExtensionMethods.StructuredDefinition Method
Gets the structured 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 StructuredDefinition ( _
type As IEdmStructuredTypeReference _
) As IEdmStructuredType
'Usage
Dim type As IEdmStructuredTypeReference
Dim returnValue As IEdmStructuredType
returnValue = type.StructuredDefinition()
public static IEdmStructuredType StructuredDefinition(
this IEdmStructuredTypeReference type
)
[ExtensionAttribute]
public:
static IEdmStructuredType^ StructuredDefinition(
IEdmStructuredTypeReference^ type
)
static member StructuredDefinition :
type:IEdmStructuredTypeReference -> IEdmStructuredType
public static function StructuredDefinition(
type : IEdmStructuredTypeReference
) : IEdmStructuredType
Parameters
- type
Type: Microsoft.Data.Edm.IEdmStructuredTypeReference
The reference to a structured type.
Return Value
Type: Microsoft.Data.Edm.IEdmStructuredType
The definition of a structured type.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmStructuredTypeReference. 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).