CorrelationDataMessageProperty.TryGetValue(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試從資料提供者專屬字典擷取指定的相互關聯資料提供者。
public:
bool TryGetValue(System::String ^ name, [Runtime::InteropServices::Out] System::String ^ % value);
public bool TryGetValue (string name, out string value);
member this.TryGetValue : string * string -> bool
Public Function TryGetValue (name As String, ByRef value As String) As Boolean
參數
- name
- String
資料提供者的名稱。
- value
- String
這個方法傳回時,會包含資料提供者的值 (若該資料提供者存在),否則會傳回 null
。 這個參數會以未初始化的狀態傳遞。
傳回
如果 CorrelationDataMessageProperty 包含指定的相互關聯資料提供者,則為 true
,否則為 false
。