ObjectItemCollection.TryGetClrType Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne un type CLR.
Surcharges
TryGetClrType(EnumType, Type) |
Retourne le type CLR sous-jacent pour l'argument de type enum OSpace spécifié. |
TryGetClrType(StructuralType, Type) |
TryGetClrType(EnumType, Type)
Retourne le type CLR sous-jacent pour l'argument de type enum OSpace spécifié.
public:
bool TryGetClrType(System::Data::Metadata::Edm::EnumType ^ objectSpaceType, [Runtime::InteropServices::Out] Type ^ % clrType);
public bool TryGetClrType (System.Data.Metadata.Edm.EnumType objectSpaceType, out Type clrType);
member this.TryGetClrType : System.Data.Metadata.Edm.EnumType * Type -> bool
Public Function TryGetClrType (objectSpaceType As EnumType, ByRef clrType As Type) As Boolean
Paramètres
- objectSpaceType
- EnumType
Type enum OSpace à rechercher.
- clrType
- Type
Quand cette méthode est retournée, contient le type enum CLR de l’argument OSpace.
Retours
true
si le type CLR peut être obtenu ; sinon, false
. Si la propriété DataSpace du paramètre n’est pas OSpace, la méthode retourne false
et définit le paramètre clrType
sur null
.
S’applique à
TryGetClrType(StructuralType, Type)
public:
bool TryGetClrType(System::Data::Metadata::Edm::StructuralType ^ objectSpaceType, [Runtime::InteropServices::Out] Type ^ % clrType);
public bool TryGetClrType (System.Data.Metadata.Edm.StructuralType objectSpaceType, out Type clrType);
member this.TryGetClrType : System.Data.Metadata.Edm.StructuralType * Type -> bool
Public Function TryGetClrType (objectSpaceType As StructuralType, ByRef clrType As Type) As Boolean
Paramètres
- objectSpaceType
- StructuralType
Objet StructuralType qui représente le type d'espace d'objet.
- clrType
- Type
Quand cette méthode est retournée, contient le type enum CLR de l’argument OSpace.
Retours
true
si le type CLR peut être obtenu ; sinon, false
. Si la propriété DataSpace du paramètre n’est pas OSpace, la méthode retourne false
et définit le paramètre clrType
sur null
.