TableEntryBase.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 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
keyName
s are compared using a case-sensitive comparison.