DicomObjects.NET Core 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 List(Of List(Of Stream))
    'Usage
     
    
    Dim instance As ValidateFragmentsArgs
    Dim value As List(Of List(Of Stream))
     
    instance.Fragments = value
     
    value = instance.Fragments
    public List<List<Stream>> Fragments {get; set;}
    public:
    property List<List<Stream^>^>^ Fragments {
       List<List<Stream^>^>^ get();
       void set (    List<List<Stream^>^>^ value);
    }
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also