Méthode EdmTypeSemantics.IsOrInheritsFrom
Détermine si un type est équivalent à ou dérivé d'un autre type.
Espace de noms : Microsoft.Data.Edm
Assembly : Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function IsOrInheritsFrom ( _
thisType As IEdmType, _
otherType As IEdmType _
) As Boolean
'Utilisation
Dim thisType As IEdmType
Dim otherType As IEdmType
Dim returnValue As Boolean
returnValue = thisType.IsOrInheritsFrom(otherType)
public static bool IsOrInheritsFrom(
this IEdmType thisType,
IEdmType otherType
)
[ExtensionAttribute]
public:
static bool IsOrInheritsFrom(
IEdmType^ thisType,
IEdmType^ otherType
)
static member IsOrInheritsFrom :
thisType:IEdmType *
otherType:IEdmType -> bool
public static function IsOrInheritsFrom(
thisType : IEdmType,
otherType : IEdmType
) : boolean
Paramètres
- thisType
Type : Microsoft.Data.Edm.IEdmType
Type à tester pour l'équivalence à ou la dérivation de l'autre type.
- otherType
Type : Microsoft.Data.Edm.IEdmType
Type qui est l'autre type.
Valeur de retour
Type : System.Boolean
true si et seulement si le paramètre thisType est équivalent au ou hérite du paramètre otherType ; sinon, false.
Remarque relative à l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme méthode d'instance sur tout objet de type IEdmType. Lorsque vous utilisez la syntaxe de la méthode d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=vs.103) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=vs.103).