ISfcPropertySet.TryGetPropertyValue Method

Definition

Overloads

TryGetPropertyValue(String, Object)

Attempts to get property value from provider

TryGetPropertyValue<T>(String, T)

Attempts to get property value from provider

TryGetPropertyValue(String, Object)

Attempts to get property value from provider

public bool TryGetPropertyValue (string name, out object value);
abstract member TryGetPropertyValue : string * obj -> bool
Public Function TryGetPropertyValue (name As String, ByRef value As Object) As Boolean

Parameters

name
String

property name

value
Object

property value

Returns

true if succeeded

Applies to

TryGetPropertyValue<T>(String, T)

Attempts to get property value from provider

public bool TryGetPropertyValue<T> (string name, out T value);
abstract member TryGetPropertyValue : string * 'T -> bool
Public Function TryGetPropertyValue(Of T) (name As String, ByRef value As T) As Boolean

Type Parameters

T

property type

Parameters

name
String

name name

value
T

property value

Returns

true if succeeded

Applies to