ExtensionMethods.IsOpen Method
Determines whether the specified type is open.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function IsOpen ( _
type As IEdmStructuredTypeReference _
) As Boolean
'Usage
Dim type As IEdmStructuredTypeReference
Dim returnValue As Boolean
returnValue = type.IsOpen()
public static bool IsOpen(
this IEdmStructuredTypeReference type
)
[ExtensionAttribute]
public:
static bool IsOpen(
IEdmStructuredTypeReference^ type
)
static member IsOpen :
type:IEdmStructuredTypeReference -> bool
public static function IsOpen(
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 open; 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.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).