ServiceObject.TryGetProperty 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
TryGetProperty(PropertyDefinitionBase, Object) |
尝试获取指定属性的值。 |
TryGetProperty<T>(PropertyDefinitionBase, T) |
尝试获取指定属性的值。 |
TryGetProperty(PropertyDefinitionBase, Object)
尝试获取指定属性的值。
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
参数
- propertyDefinition
- PropertyDefinitionBase
属性定义。
- propertyValue
- Object
属性值。
返回
如果检索了属性,则为 true;否则为 false。
适用于
TryGetProperty<T>(PropertyDefinitionBase, T)
尝试获取指定属性的值。
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
类型参数
- T
预期属性值的类型。
参数
- propertyDefinition
- PropertyDefinitionBase
属性定义。
- propertyValue
- T
属性值。
返回
如果检索了属性,则为 true;否则为 false。