XDataDictionaryTryGetValue Method
|
Gets the
extended data associated with the specified application registry name.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool TryGetValue(
string appId,
out XData value
)
Public Function TryGetValue (
appId As String,
<OutAttribute> ByRef value As XData
) As Boolean
public:
virtual bool TryGetValue(
String^ appId,
[OutAttribute] XData^% value
) sealed
abstract TryGetValue :
appId : string *
value : XData byref -> bool
override TryGetValue :
appId : string *
value : XData byref -> bool
METHOD TryGetValue(
appId AS STRING,
value OUT XData
) AS LOGIC
Parameters
- appId
- Type: SystemString
The application registry name whose value to get. - value
- Type: DXFReaderNETXData
When this method returns, the extended data associated with the specified application registry name,
if the application registry name is found; otherwise, null. This parameter is passed uninitialized.
Return Value
Type:
BooleanTrue if the current dictionary contains an
extended data with the specified application registry name; otherwise, false.
Implements
IDictionaryTKey, TValueTryGetValue(TKey, TValue)See Also