Méthode ODataUtils.HasDefaultStream
Vérifie si entityType a un flux de données par défaut.
Espace de noms : Microsoft.Data.OData
Assembly : Microsoft.Data.OData (en Microsoft.Data.OData.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function HasDefaultStream ( _
model As IEdmModel, _
entityType As IEdmEntityType _
) As Boolean
'Utilisation
Dim model As IEdmModel
Dim entityType As IEdmEntityType
Dim returnValue As Boolean
returnValue = model.HasDefaultStream(entityType)
public static bool HasDefaultStream(
this IEdmModel model,
IEdmEntityType entityType
)
[ExtensionAttribute]
public:
static bool HasDefaultStream(
IEdmModel^ model,
IEdmEntityType^ entityType
)
static member HasDefaultStream :
model:IEdmModel *
entityType:IEdmEntityType -> bool
public static function HasDefaultStream(
model : IEdmModel,
entityType : IEdmEntityType
) : boolean
Paramètres
- model
Type : Microsoft.Data.Edm.IEdmModel
IEdmModel contenant l'annotation.
- entityType
Type : Microsoft.Data.Edm.IEdmEntityType
IEdmEntityType à vérifier.
Valeur de retour
Type : System.Boolean
true si le type d'entité a un flux de données par défaut ; 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 IEdmModel. 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).