DicomObjects.NET.8.48 Documentation
DicomObjects.EventArguments Namespace / ValidateFragmentsArgs Class / Fragments Property






In This Topic
    Fragments Property
    In This Topic
    The fragments exactly as received. These may be replaced, but if you do (whether by replacing individual Stream, or even by replacing the whole list of Streams, you must set Modified to true to force DicomObjects to use your modified data.
    Syntax
    'Declaration
     
    
    Public Property Fragments As System.Collections.Generic.List(Of List(Of Stream))
    'Usage
     
    
    Dim instance As ValidateFragmentsArgs
    Dim value As System.Collections.Generic.List(Of List(Of Stream))
     
    instance.Fragments = value
     
    value = instance.Fragments
    public System.Collections.Generic.List<List<Stream>> Fragments {get; set;}
    public read-write property Fragments: System.Collections.Generic.List; 
    public function get,set Fragments : System.Collections.Generic.List
    public: __property System.Collections.Generic.List<List<Stream*>*>* get_Fragments();
    public: __property void set_Fragments( 
       System.Collections.Generic.List<List<Stream*>*>* value
    );
    public:
    property System.Collections.Generic.List<List<Stream^>^>^ Fragments {
       System.Collections.Generic.List<List<Stream^>^>^ get();
       void set (    System.Collections.Generic.List<List<Stream^>^>^ value);
    }
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also