TableEntryBase.TryGetValue(String, Object) Method

Definition

Get the data associated with the specified column (if this entry has data associated with that column).

public:
 virtual bool TryGetValue(System::String ^ keyName, [Runtime::InteropServices::Out] System::Object ^ % content);
 virtual bool TryGetValue(std::wstring const & keyName, [Runtime::InteropServices::Out] winrt::Windows::Foundation::IInspectable const & & content);
public virtual bool TryGetValue (string keyName, out object content);
abstract member TryGetValue : string * obj -> bool
override this.TryGetValue : string * obj -> bool
Public Overridable Function TryGetValue (keyName As String, ByRef content As Object) As Boolean

Parameters

keyName
String

The key name.

content
Object

The content.

Returns

true if the entry has data associated with the column

Implements

Remarks

keyNames are compared using a case-sensitive comparison.

Applies to