LocationReferenceEnvironment.TryGetLocationReference 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,尝试获取指定的 LocationReference。
public:
abstract bool TryGetLocationReference(System::String ^ name, [Runtime::InteropServices::Out] System::Activities::LocationReference ^ % result);
public abstract bool TryGetLocationReference (string name, out System.Activities.LocationReference result);
abstract member TryGetLocationReference : string * LocationReference -> bool
Public MustOverride Function TryGetLocationReference (name As String, ByRef result As LocationReference) As Boolean
参数
- name
- String
要检索的 LocationReference 的名称。
- result
- LocationReference
当此方法返回 true
时,result
包含指定名称的 LocationReference;否则为 null
。 此参数未经初始化即被传递。
返回
如果存在指定名称的 LocationReference,则为 true
;否则为 false
。