ExtensionMethods.DeclaredStructuralProperties Method (IEdmStructuredType)
Gets the declared structural properties with the specified type.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function DeclaredStructuralProperties ( _
type As IEdmStructuredType _
) As IEnumerable(Of IEdmStructuralProperty)
'Usage
Dim type As IEdmStructuredType
Dim returnValue As IEnumerable(Of IEdmStructuralProperty)
returnValue = type.DeclaredStructuralProperties()
public static IEnumerable<IEdmStructuralProperty> DeclaredStructuralProperties(
this IEdmStructuredType type
)
[ExtensionAttribute]
public:
static IEnumerable<IEdmStructuralProperty^>^ DeclaredStructuralProperties(
IEdmStructuredType^ type
)
static member DeclaredStructuralProperties :
type:IEdmStructuredType -> IEnumerable<IEdmStructuralProperty>
public static function DeclaredStructuralProperties(
type : IEdmStructuredType
) : IEnumerable<IEdmStructuralProperty>
Parameters
- type
Type: Microsoft.Data.Edm.IEdmStructuredType
The structured type.
Return Value
Type: System.Collections.Generic.IEnumerable<IEdmStructuralProperty>
A collection of declared structural properties.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmStructuredType. 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).