ITableEntry.TryGetValue(String, Object) 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.
Get the data associated with the specified column (if this entry has data associated with keyName
).
public:
bool TryGetValue(System::String ^ keyName, [Runtime::InteropServices::Out] System::Object ^ % content);
bool TryGetValue(std::wstring const & keyName, [Runtime::InteropServices::Out] winrt::Windows::Foundation::IInspectable const & & content);
public bool TryGetValue (string keyName, out object content);
abstract member TryGetValue : string * obj -> bool
Public 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.
Remarks
keyName
s are compared using a case-sensitive comparison.