ExtensionMethods.IsAbstract Method
Determines whether the specified type is an abstract.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function IsAbstract ( _
type As IEdmStructuredTypeReference _
) As Boolean
'Usage
Dim type As IEdmStructuredTypeReference
Dim returnValue As Boolean
returnValue = type.IsAbstract()
public static bool IsAbstract(
this IEdmStructuredTypeReference type
)
[ExtensionAttribute]
public:
static bool IsAbstract(
IEdmStructuredTypeReference^ type
)
static member IsAbstract :
type:IEdmStructuredTypeReference -> bool
public static function IsAbstract(
type : IEdmStructuredTypeReference
) : boolean
Parameters
- type
Type: Microsoft.Data.Edm.IEdmStructuredTypeReference
The reference to a structured type.
Return Value
Type: System.Boolean
true if the specified type is an abstract; otherwise, false.
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.113) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.113).