ServiceObject.TryGetProperty 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.
Surcharges
TryGetProperty(PropertyDefinitionBase, Object) |
Tente d’obtenir la valeur d’une propriété spécifiée. |
TryGetProperty<T>(PropertyDefinitionBase, T) |
Tente d’obtenir la valeur d’une propriété spécifiée. |
TryGetProperty(PropertyDefinitionBase, Object)
Tente d’obtenir la valeur d’une propriété spécifiée.
public:
bool TryGetProperty(Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^ propertyDefinition, [Runtime::InteropServices::Out] System::Object ^ % propertyValue);
public bool TryGetProperty (Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase propertyDefinition, out object propertyValue);
Public Function TryGetProperty (propertyDefinition As PropertyDefinitionBase, ByRef propertyValue As Object) As Boolean
Paramètres
- propertyDefinition
- PropertyDefinitionBase
Définition de propriété.
- propertyValue
- Object
Valeur de la propriété.
Retours
true si la propriété a été récupérée ; sinon, false.
S’applique à
TryGetProperty<T>(PropertyDefinitionBase, T)
Tente d’obtenir la valeur d’une propriété spécifiée.
public:
generic <typename T>
bool TryGetProperty(Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^ propertyDefinition, [Runtime::InteropServices::Out] T % propertyValue);
public bool TryGetProperty<T> (Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase propertyDefinition, out T propertyValue);
Public Function TryGetProperty(Of T) (propertyDefinition As PropertyDefinitionBase, ByRef propertyValue As T) As Boolean
Paramètres de type
- T
Type de valeur de propriété attendue.
Paramètres
- propertyDefinition
- PropertyDefinitionBase
Définition de propriété.
- propertyValue
- T
Valeur de la propriété.
Retours
true si la propriété a été récupérée ; sinon, false.