Returns true if the type is an entity interface type
Namespace: BrightstarDB.EntityFrameworkAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# |
|---|
public static bool IsKnownInterface(
Type t
) |
| Visual Basic |
|---|
Public Shared Function IsKnownInterface (
t As Type
) As Boolean |
| Visual C++ |
|---|
public:
static bool IsKnownInterface(
Type^ t
) |
| F# |
|---|
static member IsKnownInterface :
t : Type -> bool
|
Parameters
- t
- Type: System..::..Type
The type to be tested
Return Value
Type:
BooleanTrue if the type is an entity interface type, false otherwise
See Also