VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Dicom Namespace / DicomDataElementCollection Class / TryGetData Methods / TryGetData(DicomDataElementId,UInt64) Method
Syntax Requirements SeeAlso
In This Topic
    TryGetData(DicomDataElementId,UInt64) Method (DicomDataElementCollection)
    In This Topic
    Tries to retrieve the value for the specified DicomDataElement in the collection.
    Syntax
    'Declaration
    
    Public Overloads Function TryGetData( _
    ByVal id
    The identifier of data element.
    As DicomDataElementId, _
    ByRef value
    The value of data element.
    As ULong _
    ) As Boolean
    public bool TryGetData(
    DicomDataElementId id,
    out ulong value
    )
    public: bool TryGetData(
    DicomDataElementId id,
    [PARAMFLAG::Out] ulong value
    )
    public:
    bool TryGetData(
    DicomDataElementId id,
    [Out] ulong value
    )

    Parameters

    id
    The identifier of data element.
    value
    The value of data element.

    Return Value

    True if value is retrieved; otherwise, false.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also