CorrelationDataMessageProperty.TryGetValue(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Attempts to retrieve the specified correlation data provider from the private dictionary of data providers.
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
Parameters
- name
- String
The name of the data provider.
- value
- String
When this method returns, contains the value of the data provider if it is present; otherwise, null
. This parameter is passed uninitialized.
Returns
true
if the CorrelationDataMessageProperty contains the specified correlation data provider; otherwise, false
.