DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / IgnoreAttributeGroup Method
The Group to ignore






In This Topic
    IgnoreAttributeGroup Method
    In This Topic
    Instruct DicomObjects to ignore particular attributes
    Syntax
    'Declaration
     
    
    Public Shared Sub IgnoreAttributeGroup( _
       ByVal group As System.UShort _
    ) 
    'Usage
     
    
    Dim group As System.UShort
     
    DicomGlobal.IgnoreAttributeGroup(group)
    public static void IgnoreAttributeGroup( 
       System.ushort group
    )
    public procedure IgnoreAttributeGroup( 
        group: System.Word
    ); static; 
    public static function IgnoreAttributeGroup( 
       group : System.ushort
    );
    public: static void IgnoreAttributeGroup( 
       System.ushort group
    ) 
    public:
    static void IgnoreAttributeGroup( 
       System.ushort group
    ) 

    Parameters

    group
    The Group to ignore
    Remarks
    This is a very specialist feature, intended only to be used when receiving or reading data from systems so bad that the data cannot be fixed after reading. It is most commonly used when receiving badly formatted sequences, but in that context can only be used when they use explicit length for the sequence as a whole, as it would otherwise not be possible to determine the location of the end of the sequence.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also