Discuss this help topic in SecureBlackbox Forum

TElDictionary.TryGetValue

TElDictionary     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Declaration

[C#]
    bool TryGetValue(string Key, ref Object Value);
    bool TryGetValue(byte[] Key, ref Object Value);

[VB.NET]
    Function TryGetValue(ByVal Key As String, ByRef Value As Object) As Boolean
    Function TryGetValue(ByVal Key As Byte(), ByRef Value As Object) As Boolean

[Pascal]
    under development

[C++]
    bool TryGetValue(const std::string &Key, TObject &Value);
    bool TryGetValue(const std::vector<uint8_t> &Key, TObject &Value);

[PHP]
    bool TryGetValue(string $Key, TObject &$Value)
    bool TryGetValue(array of byte|string|NULL $Key, TObject &$Value)

[Java]
    boolean tryGetValue(byte[] Key, TObject[] Value);
    boolean tryGetValue(String Key, TObject[] Value);

Parameters

  • Key -

Description

    This topic is under development.

See also:     ...    

Discuss this help topic in SecureBlackbox Forum