ExtensionMethods.StructuralProperties Method (IEdmStructuredTypeReference)
Gets the structural properties.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function StructuralProperties ( _
type As IEdmStructuredTypeReference _
) As IEnumerable(Of IEdmStructuralProperty)
'Usage
Dim type As IEdmStructuredTypeReference
Dim returnValue As IEnumerable(Of IEdmStructuralProperty)
returnValue = type.StructuralProperties()
public static IEnumerable<IEdmStructuralProperty> StructuralProperties(
this IEdmStructuredTypeReference type
)
[ExtensionAttribute]
public:
static IEnumerable<IEdmStructuralProperty^>^ StructuralProperties(
IEdmStructuredTypeReference^ type
)
static member StructuralProperties :
type:IEdmStructuredTypeReference -> IEnumerable<IEdmStructuralProperty>
public static function StructuralProperties(
type : IEdmStructuredTypeReference
) : IEnumerable<IEdmStructuralProperty>
Parameters
- type
Type: Microsoft.Data.Edm.IEdmStructuredTypeReference
The reference to a structured type.
Return Value
Type: System.Collections.Generic.IEnumerable<IEdmStructuralProperty>
The structural properties.
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).