Partager via


DataBus.TryGetPropertyValue Méthode

Définition

Tente d'obtenir la valeur de propriété.

Surcharges

TryGetPropertyValue(String, Object)

Tente d'obtenir la valeur de propriété avec un nom et une valeur spécifiés.

TryGetPropertyValue<T>(String, T)

Tente d'obtenir la valeur de propriété avec un nom et un type spécifiés.

TryGetPropertyValue(String, Object)

Tente d'obtenir la valeur de propriété avec un nom et une valeur spécifiés.

public:
 virtual bool TryGetPropertyValue(System::String ^ name, [Runtime::InteropServices::Out] System::Object ^ % value);
public bool TryGetPropertyValue (string name, out object value);
abstract member TryGetPropertyValue : string * obj -> bool
override this.TryGetPropertyValue : string * obj -> bool
Public Function TryGetPropertyValue (name As String, ByRef value As Object) As Boolean

Paramètres

name
String

Chaîne qui représente un nom.

value
Object

Valeur de propriété (peut être Null).

Retours

True en cas de réussite ; sinon, false.

Implémente

S’applique à

TryGetPropertyValue<T>(String, T)

Tente d'obtenir la valeur de propriété avec un nom et un type spécifiés.

public:
generic <typename T>
 virtual bool TryGetPropertyValue(System::String ^ name, [Runtime::InteropServices::Out] T % value);
public bool TryGetPropertyValue<T> (string name, out T value);
abstract member TryGetPropertyValue : string * 'T -> bool
override this.TryGetPropertyValue : string * 'T -> bool
Public Function TryGetPropertyValue(Of T) (name As String, ByRef value As T) As Boolean

Paramètres de type

T

Type de la valeur de propriété.

Paramètres

name
String

Chaîne qui représente un nom.

value
T

Type de la propriété (peut être Null).

Retours

true en cas de réussite ; sinon, false.

Implémente

S’applique à