In This Topic
Recursively perform an action on every attribute within the dataset
Syntax
'Declaration
Public Sub ForEachAttribute( _
ByVal As System.Action(Of SequencePath) _
)
'Usage
Dim instance As DicomDataSet
Dim action As System.Action(Of SequencePath)
instance.ForEachAttribute(action)
public void ForEachAttribute(
System.Action<SequencePath>
)
public procedure ForEachAttribute(
: System.Action
);
public function ForEachAttribute(
: System.Action
);
public: void ForEachAttribute(
System.Action<SequencePath*>*
)
public:
void ForEachAttribute(
System.Action<SequencePath^>^
)
Parameters
- action
- Delegate, which takes as a parameter, the path to each attribute.
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also